Is your server/client system using SOCK_DGRAM or SOCK_STREAM. if you are using SOCK_STREAM then once the connection is accepted using the accept function there should be a socket variable that the client is connected to. SOCKET server; //assume already in listen state SOCKET client = accept(server, ...); use the client variable to send messages back to the client machine like the following: send(client, ...);
Chipper Martin