mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2026-01-27 20:37:10 +00:00
ss: Report MSS from internal TCP information
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
This commit is contained in:
parent
fa1f7441a9
commit
4d35434771
@ -1392,6 +1392,8 @@ static void tcp_show_info(const struct nlmsghdr *nlh, struct inet_diag_msg *r)
|
||||
(double)info->tcpi_rttvar/1000);
|
||||
if (info->tcpi_ato)
|
||||
printf(" ato:%g", (double)info->tcpi_ato/1000);
|
||||
if (info->tcpi_snd_mss)
|
||||
printf(" mss:%d", info->tcpi_snd_mss);
|
||||
if (info->tcpi_snd_cwnd != 2)
|
||||
printf(" cwnd:%d", info->tcpi_snd_cwnd);
|
||||
if (info->tcpi_snd_ssthresh < 0xFFFF)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user