n I create a server application that can support multiple clients in the same PC by using TCP library service. Is there a client handle function that I can use to assign to each client, so that the server know which client it can talk and listen to. ThanksYou can call RegisterTCPServer more times to establish more than one conversations with your clients, each identified by a different port and a different conversation handle.
You have two choices:
- use a separate callback function for each conversation (each time you call RegisterTCPServer)
- use the same callback function for all conversations and differentiate between the by for example callbackData parameter set when registering the function (look at the on line help for this parameter in RegisterTCPServer)
Roberto