mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2026-01-26 22:32:50 +00:00
ss: Fixed wrong tcp ato value from netlink
Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
This commit is contained in:
parent
b217df108c
commit
11ba90fcbd
@ -1906,7 +1906,7 @@ static void tcp_show_info(const struct nlmsghdr *nlh, struct inet_diag_msg *r,
|
||||
s.backoff = info->tcpi_backoff;
|
||||
s.rtt = (double)info->tcpi_rtt / 1000;
|
||||
s.rttvar = (double)info->tcpi_rttvar / 1000;
|
||||
s.ato = (double)info->tcpi_rttvar / 1000;
|
||||
s.ato = (double)info->tcpi_ato / 1000;
|
||||
s.mss = info->tcpi_snd_mss;
|
||||
s.rcv_space = info->tcpi_rcv_space;
|
||||
s.rcv_rtt = (double)info->tcpi_rcv_rtt / 1000;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user