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 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
