|
@@ -2031,8 +2031,13 @@ void tcp_get_info(struct sock *sk, struct tcp_info *info)
|
|
info->tcpi_snd_mss = tp->mss_cache;
|
|
info->tcpi_snd_mss = tp->mss_cache;
|
|
info->tcpi_rcv_mss = icsk->icsk_ack.rcv_mss;
|
|
info->tcpi_rcv_mss = icsk->icsk_ack.rcv_mss;
|
|
|
|
|
|
- info->tcpi_unacked = tp->packets_out;
|
|
|
|
- info->tcpi_sacked = tp->sacked_out;
|
|
|
|
|
|
+ if (sk->sk_state == TCP_LISTEN) {
|
|
|
|
+ info->tcpi_unacked = sk->sk_ack_backlog;
|
|
|
|
+ info->tcpi_sacked = sk->sk_max_ack_backlog;
|
|
|
|
+ } else {
|
|
|
|
+ info->tcpi_unacked = tp->packets_out;
|
|
|
|
+ info->tcpi_sacked = tp->sacked_out;
|
|
|
|
+ }
|
|
info->tcpi_lost = tp->lost_out;
|
|
info->tcpi_lost = tp->lost_out;
|
|
info->tcpi_retrans = tp->retrans_out;
|
|
info->tcpi_retrans = tp->retrans_out;
|
|
info->tcpi_fackets = tp->fackets_out;
|
|
info->tcpi_fackets = tp->fackets_out;
|