diff options
author | Sean Bruno <sbruno@FreeBSD.org> | 2017-08-25 19:41:38 +0000 |
---|---|---|
committer | Sean Bruno <sbruno@FreeBSD.org> | 2017-08-25 19:41:38 +0000 |
commit | 32a04bb81dd1d62186922d38c6f8d6df9f615231 (patch) | |
tree | b85ae5c4b284dc5a1f239b14115f876ca130f4f7 /usr.bin | |
parent | d86cddf0f075b16f14d90d07ad76a8355c53979e (diff) | |
download | src-test2-32a04bb81dd1d62186922d38c6f8d6df9f615231.tar.gz src-test2-32a04bb81dd1d62186922d38c6f8d6df9f615231.zip |
Notes
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/netstat/inet.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/usr.bin/netstat/inet.c b/usr.bin/netstat/inet.c index f238a26c4a15..d0c56006b0e3 100644 --- a/usr.bin/netstat/inet.c +++ b/usr.bin/netstat/inet.c @@ -752,12 +752,24 @@ tcp_stats(u_long off, const char *name, int af1 __unused, int proto __unused) "{N:/time%s unexpected signature received}\n"); p(tcps_sig_err_nosigopt, "\t{:no-signature-provided/%ju} " "{N:/time%s no signature provided by segment}\n"); + + xo_close_container("tcp-signature"); + xo_open_container("pmtud"); + + p(tcps_pmtud_blackhole_activated, "\t{:pmtud-activated/%ju} " + "{N:/Path MTU discovery black hole detection activation%s}\n"); + p(tcps_pmtud_blackhole_activated_min_mss, + "\t{:pmtud-activated-min-mss/%ju} " + "{N:/Path MTU discovery black hole detection min MSS activation%s}\n"); + p(tcps_pmtud_blackhole_failed, "\t{:pmtud-failed/%ju} " + "{N:/Path MTU discovery black hole detection failure%s}\n"); #undef p #undef p1a #undef p2 #undef p2a #undef p3 - xo_close_container("tcp-signature"); + xo_close_container("pmtud"); + xo_open_container("TCP connection count by state"); xo_emit("{T:/TCP connection count by state}:\n"); |