svn commit: r261525 - head/usr.bin/netstat

Bjoern A. Zeeb bz at FreeBSD.org
Wed Feb 5 20:43:04 UTC 2014


Author: bz
Date: Wed Feb  5 20:43:03 2014
New Revision: 261525
URL: http://svnweb.freebsd.org/changeset/base/261525

Log:
  Print the MD5 signature information introduced in r221023 in the
  TCP statistics output.
  
  MFC after:	3 weeks

Modified:
  head/usr.bin/netstat/inet.c

Modified: head/usr.bin/netstat/inet.c
==============================================================================
--- head/usr.bin/netstat/inet.c	Wed Feb  5 19:24:16 2014	(r261524)
+++ head/usr.bin/netstat/inet.c	Wed Feb  5 20:43:03 2014	(r261525)
@@ -723,6 +723,17 @@ tcp_stats(u_long off, const char *name, 
 	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


More information about the svn-src-all mailing list