Hi, I browsed the python socket docs and google for two days but I did not find any answer. Yeah I am a network programming newbie :)
I would like to implement some LAN chatting system with specific function for our needs. I am at the very beginning. I was able to implement a client-server model where the client connects to the server (socket.SOCK_STREAM) and they are able to change messages. I want to step forward. I want the client to discover the LAN with a broadcast how many other clients are available. I failed. Is it possible that a socket.SOCK_STREAM type socket could not be used for this task? If so, what are my opportunities? using udp packets? How I have to listen for brodcast messages/packets?