in reply to Re^2: How to count the number of pending clients in socket queue?
in thread How to count the number of pending clients in socket queue?
This is how such an entry looks like:
1: 00000000:1A0B 00000000:0000 0A 00000000:00000002 00:00000000 00000000 1000 0 1117932 1 ffff880031e70040 100 0 0 10 0
The fist column is the local address (here a server-socket listening on port 6667) the next the remote address, then the state (here 0A for listening) then the transmit and receive queue-lengths.
Here my server has 2 connections pending.
So using the address your server listens you should be able to extract the information you need from /proc/net/tcp.
Maybe Linux::Proc::Net::TCP can help here, but I have never used it.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How to count the number of pending clients in socket queue?
by mrbark (Acolyte) on Nov 25, 2013 at 04:35 UTC |