Hello,

I'll keep it short and sweet. I'm writing a program to act as a
server. This server will accecpt two (2) client connections. I have
two objects of the TCPListener Class that listen on two local ports (100 and 101 on my PC as the localhost 127.0.0.1). The problem that I'm running into is when the AcceptSocket() function waits for a connection it blocks. Futhermore, if its waiting for a connection from Port 100 and if a client with Port 101 decides to connect, it will not connect because its waiting for 100. Threading maybe one way to solve this. I want to be able to listen at the sametime for a connection on Port 100 and 101 and then once that is established go do other things.

Thanks - Fred