Are we talking about TCP If so, the programming model is that you create a socket that listens to incoming connection. Each time someone connects to your socket, you call AcceptSocket or AcceptTCPClient and get a new socket where you can communicate with the client.
Winsock Socket Help
benjamin pfeffer
Are we talking about TCP If so, the programming model is that you create a socket that listens to incoming connection. Each time someone connects to your socket, you call AcceptSocket or AcceptTCPClient and get a new socket where you can communicate with the client.
Check out TCPListener and TCPClient respectively...
Best regards,
Johan Stenberg