number of conections

  • Thread starter Thread starter Francisco K. do Amaral
  • Start date Start date
F

Francisco K. do Amaral

Hi,
I would like to know if exists some socket property to set the maximum
number of accepted connections.
Thanks.
 
Francisco K. do Amaral said:
I would like to know if exists some socket property to set the maximum
number of accepted connections.

If what prompts the question is the fact that some application of yours does
not permit as many simultaneous inbound connections as you'd like then it
may be a platform licensing issue:

http://support.microsoft.com/?kbid=122920

Regards,
Will
 
Hi will,

Thanks for your attention, but what happens is that I want to limit the
number of connections accepted at my client-server application.
I tryed to do it using the method
Socket.SetSocketOption(SocketOptionLevel.Socket,
SocketOptionName.MaxConnections,n) of my socket that listens for incoming
connection attempts and its doesnt works.
Do you know how can I do that?

thaks.
Francisco K. do Amaral said:
I would like to know if exists some socket property to set the maximum
number of accepted connections.

If what prompts the question is the fact that some application of yours does
not permit as many simultaneous inbound connections as you'd like then it
may be a platform licensing issue:

http://support.microsoft.com/?kbid=122920

Regards,
Will
 
Back
Top