in reply to how to find out whats in a LISTEN queue
Also note that you can check to see how much queue is being used by doing netstat -n|grep SYN_RCVD this will show waiting connections. Be sure to only count the ones on the socket in which you are interested, though. (That is, netstat -n|grep SYN_RCVD|wc -l is not enough.) Some linux netstats may not report that value and/or may not document it in the documentation. "Use the source, Luke."
HTH, --traveler
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: how to find out whats in a LISTEN queue
by waswas-fng (Curate) on Jan 03, 2003 at 00:17 UTC | |
by jimc (Sexton) on Jan 03, 2003 at 00:33 UTC | |
Re: Re: how to find out whats in a LISTEN queue
by jimc (Sexton) on Jan 03, 2003 at 00:21 UTC |