On Tue, 2007-09-04 at 10:40 +0200, Ortwin Glück wrote:
> 
> Oleg Kalnichevski wrote:
> > What do you mean by the 'backlog limit for the server socket'? Maximum
> > content buffer length?
> 
> I think he refers to the number of not-yet-accepted TCP connections (SYN
> received, but not ACKed). See second parameter of ServerSocket(int,
> int). Basically connections must be accepted one by one. But in the
> meantime the connections keep queuing up until the backlog limit is
> reached. From that point on new connections will get a RST packet instead.
> 
> Odi
> 

I see. NIO does not seem to expose this option because the server socket
get instantiated behind the scene by the ServerSocketChannel. So the
system default should apply.

Oleg   

> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to