Hi,
I am trying to create a UDP broadcast server so that I can send out data to every computer on our local network for aircraft testing. I can get every component of the system to work except for the broadcast part... As I understand it, if I want to send a UDP packet as a broadcast, the only difference from a regular UDP communication is using setsockopts() to allow broadcast and sending to the address INADDR_BROADCAST. I would appreciate any help or comments from anyone who has worked with socket code in C.
Thanks!!