Hi!
I´m writing a server/client application. In the server I want that the callback for TCP events will be processed in a own thread that the whole server will not be blocked during TCP communication. How can I do this?
My idea is that I create a thread and in this thread I register the server with "RegisterTCPServer (Port, TCPCallback, 0)". But now I don´t know if the callback "TCPCallback" will be processed within this thread or not.
Can anybody help me pls?
Thx
Thomas