-
Dear Guys and Gals,
Ive developed a Telnet server in vb5.
It accepts the connection fine and allows the connected user to do as they wish.
However, when 1 client connects, another client cant connect at the same time, is there a way to allow multiple connections on the same port?
------------------
Regards,
Paul Rivoli
-------------------
[email protected]
http://users.bigpond.com/privoli
-
How do I go about adding multiple Winsock controls at run-time and getting then to listen on the same port?
------------------
Regards,
Paul Rivoli
-------------------
[email protected]
http://users.bigpond.com/privoli
-
If you are using the TCP protocol, you have to dynamically create a new winsock control at runtime for each client. That will allow you to handle multiple sessions.
HTH
Tom