I'm trying to build some TCP/IP client-server application in multithreafing
and found out that this won't work:
I called the register server function from a new thread (out of the main
thread) The function does not return with any errors , Then I connect to
that server app. with a client app. and yet I don't get any errors in the
connect function, But when I try from the client app. to send some message,
The server TCP/IP callback function is not raised, Only when the register
server function is called from the main thread, it works.