Re: multiple TCIP connections
On Fri, 05 Oct 2007 23:06:53 -0700, vinki wrote:
> Hello everyone,
>
>
> I have this code for TCPListenPort. The code works fine, but my manager
> is
> asking me to establish multiple connections to the same port. How can i
> acheive that
>
Get a good book about writing tcp/ip servers on Windows. It's trivial on
Unix with fork(). On Windows, you need to use threads. Not hard, but not
completely trivial either.
HTH,
M4
|