I\'m writing a server/client system in C, which uses BSD Sockets under a TCP connection. The server is multi-threaded, with each connection running in its own receptor. Ea
Your SendToAll() will need to iterate through all open sockets and write the data to each one independently.
SendToAll()
Broadcast and multicast are limited to UDP sockets only.