Its my first time programing network in java. I was looking for a way to send to somehow broadcast to all nodes in the whole networking. To let them know of my existence. I'm trying to make a multiplayer network game, and I want the clients to be able to see all the games available to choose which one to join. I want to know how to broadcast from the server and also how to make the clients listen.

Please make it simple, I'm a newbie :)

Thanks in advance.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

To broadcast data packets, send them to the broadcast address of the given subnet (the last address of the subnet). The IP 255.255.255.255 is the broadcast address for the zero network.

A special definition exists for the IP broadcast address 255.255.255.255. It is the broadcast address of the zero network or 0.0.0.0, which in Internet Protocol standards stands for this network, i.e. the local network. Transmission to this address is limited by definition, in that it is never forwarded by the routers connecting the local network to the Internet.

Broadcast address

So to broadcast to your current network, send the packets to 255.255.255.255.

link|improve this answer
1  
This is actually a bad idea, because UDP broadcasts consume excessive network resources, and most routers will not forward such packets without customizing the configuration to specifically allow it. – Michael Aaron Safyan Jul 4 '11 at 7:35
@Michael Did not know that most routers don't forward that. How does DHCP work then? It's just how i learned it and seen it in other SO answers/questiond, i.e. stackoverflow.com/questions/737899/broadcasting stackoverflow.com/questions/869925/… ... – cularis Jul 4 '11 at 7:53
1  
As the routers do not forward broadcast, only NICs in the LAN (an probably only in the subnet) will be reached. – SJuan76 Jul 4 '11 at 8:57
I thought he wanted to implement a multiplayer network game, so it should be sufficient if it works in the current subnet. – cularis Jul 4 '11 at 9:03
@cularis, the broadcast will still reach the router, but the router won't forward it. It actually may not be sufficient even if it works in the current subnet. I learned this the hard way, because I was burned on a school project by implementing something with UDP broadcast. There were multiple routers at our school all using the same SSID, so even if multiple devices were connected to the same logical network, they could actually be talking to different routers, and the packets wouldn't reach other. – Michael Aaron Safyan Jul 4 '11 at 10:28
show 3 more comments
feedback

Do not confuse terms.

Broadcast is usually used for UDP. UDP is unreliable in the sense that it does not check if all of the packets are received by the clients. Opening a lot of TCP connections to a lot of clients is not broadcast.

To have your clients listen to a port, you need to use ServerSocket and read it.

link|improve this answer
Actually I don't have the server's IP address to connect to it through a ServerSocket. I want to server broadcast its existence so I get its IP address. – Pro.Hessam Jul 4 '11 at 7:52
Then that it would be really broadcast, but as Michael Aaron Safyan has written in a comment, it will only work in the LAN because routers usually do not redirect broadcast (for good measure, imagine everybody's broadcasts being transmitted all over the internet and clogging "the tubes"). – SJuan76 Jul 4 '11 at 9:00
feedback

I recommend that you use PubSubHubbub or a similar protocol. Basically, you would have a "hub" to which you send the notification that you want to have "broadcasted". Each of the nodes subscribes to the topic, by providing a URL that the hub can invoke when new data has arrived. When the "hub" receives this broadcast, the hub contacts each subscription URL to let the node know there is new data.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.