C++ networking simple send and receive
- by Wallter
I'm trying to link 10 computers together, the program i would like to write would have one 'control' computer. From what I've looked up this computer would take all the packets sent over the network and do a echo with them... right? The other computers would need to be able to send information (then echoed to the others) to the 'control' ... is there a easy! or simple way to do this? From what I've seen i want a non-blocking socket?
I have looked into sockets and such but for an armature programmer like me, this seems like a daunting task :)
I'm kind-of looking for an easy class implication that has a send() and an event driven recv().
I'm not going to be sending that much information over the network.