diff options
| author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2014-02-05 20:43:03 +0000 |
|---|---|---|
| committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2014-02-05 20:43:03 +0000 |
| commit | a4993b252e8afa453509501b74a517d48edf1a3a (patch) | |
| tree | ff12818c3edb46b647cd4e00e14d97de2e499f5e /usr.bin/netstat/inet.c | |
| parent | 8d280bcbfc58f6a56ca41077df4ce909954d5b96 (diff) | |
Notes
Diffstat (limited to 'usr.bin/netstat/inet.c')
| -rw-r--r-- | usr.bin/netstat/inet.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/usr.bin/netstat/inet.c b/usr.bin/netstat/inet.c index af235f120e155..09b3110b5c700 100644 --- a/usr.bin/netstat/inet.c +++ b/usr.bin/netstat/inet.c @@ -723,6 +723,17 @@ tcp_stats(u_long off, const char *name, int af1 __unused, int proto __unused) p(tcps_ecn_ect1, "\t%ju packet%s with ECN ECT(1) bit set\n"); p(tcps_ecn_shs, "\t%ju successful ECN handshake%s\n"); p(tcps_ecn_rcwnd, "\t%ju time%s ECN reduced the congestion window\n"); + + p(tcps_sig_rcvgoodsig, + "\t%ju packet%s with valid tcp-md5 signature received\n"); + p(tcps_sig_rcvbadsig, + "\t%ju packet%s with invalid tcp-md5 signature received\n"); + p(tcps_sig_err_buildsig, + "\t%ju packet%s with tcp-md5 signature mismatch\n"); + p(tcps_sig_err_sigopt, + "\t%ju packet%s with unexpected tcp-md5 signature received\n"); + p(tcps_sig_err_nosigopt, + "\t%ju packet%s without expected tcp-md5 signature received\n"); #undef p #undef p1a #undef p2 |
