diff options
author | Rick Jones <rick.jones2@hp.com> | 2007-09-18 16:26:31 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:51:35 -0400 |
commit | 5ee3afba88f5a79d0bff07ddd87af45919259f91 (patch) | |
tree | b0117be47ea4f84abf56996f39792362c15909d7 /net/ipv4/tcp_diag.c | |
parent | 768f3591e2b1cc309fd6f10d6579b216026d7817 (diff) |
[TCP]: Return useful listenq info in tcp_info and INET_DIAG_INFO.
Return some useful information such as the maximum listen backlog and
the current listen backlog in the tcp_info structure and
INET_DIAG_INFO.
Signed-off-by: Rick Jones <rick.jones2@hp.com>
Signed-off-by: Eric Dumazet <dada1@cosmosbay.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_diag.c')
-rw-r--r-- | net/ipv4/tcp_diag.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/net/ipv4/tcp_diag.c b/net/ipv4/tcp_diag.c index 57c5f0b10e6c..3904d2158a92 100644 --- a/net/ipv4/tcp_diag.c +++ b/net/ipv4/tcp_diag.c | |||
@@ -25,11 +25,13 @@ static void tcp_diag_get_info(struct sock *sk, struct inet_diag_msg *r, | |||
25 | const struct tcp_sock *tp = tcp_sk(sk); | 25 | const struct tcp_sock *tp = tcp_sk(sk); |
26 | struct tcp_info *info = _info; | 26 | struct tcp_info *info = _info; |
27 | 27 | ||
28 | if (sk->sk_state == TCP_LISTEN) | 28 | if (sk->sk_state == TCP_LISTEN) { |
29 | r->idiag_rqueue = sk->sk_ack_backlog; | 29 | r->idiag_rqueue = sk->sk_ack_backlog; |
30 | else | 30 | r->idiag_wqueue = sk->sk_max_ack_backlog; |
31 | } else { | ||
31 | r->idiag_rqueue = tp->rcv_nxt - tp->copied_seq; | 32 | r->idiag_rqueue = tp->rcv_nxt - tp->copied_seq; |
32 | r->idiag_wqueue = tp->write_seq - tp->snd_una; | 33 | r->idiag_wqueue = tp->write_seq - tp->snd_una; |
34 | } | ||
33 | if (info != NULL) | 35 | if (info != NULL) |
34 | tcp_get_info(sk, info); | 36 | tcp_get_info(sk, info); |
35 | } | 37 | } |