So I'm starting off in networking and seem to have a basic idea of setting up a client and server that will communicate with each other, but I want something that will actually send the message to all the clients connected to the server. I've tried using MulticastSockets and all that seems to do is enable the clients themselves to communicate without the use of a server, and that being said I'm not quite understanding how that could be portforwarded (which im assuming it must be in order to work outside of a home network) when the clients connect to each other. So my question is how do I setup a server to receive packets from a multicast client, then relay that message back to the servers already connected clients. Basically I'm trying to create a chat server that receives and handles the messages from its connected clients. I'm so confused >.<, if I'm going about this the wrong way then please help point me in the right direction. Thanks in advance!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
"Initially"... Multicast only work on local network (without change config in routers)... If you want use a well library... try JGroups this have TotalOrder over UDP and Multicast (and many more)... I've tried and really spectacular. EDIT (20/Jan): http://www.jgroups.org/manual/html/user-advanced.html 5.9. Bridging between remote clusters
You can use multicast in one side, and config relay to bridge packets to another side.... if this is that you want... |
|||||||||
|