diff options
author | wollman <wollman@FreeBSD.org> | 1996-06-05 17:24:33 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1996-06-05 17:24:33 +0000 |
commit | 99c2eebb28f179cf7f98673935ba27d2a1dc9c23 (patch) | |
tree | 8dd7ad79b998063d64673413ce00bfa2fcd58fe9 | |
parent | 63e056d1ae3993d6dc2428823832de6d015f0b53 (diff) | |
download | FreeBSD-src-99c2eebb28f179cf7f98673935ba27d2a1dc9c23.zip FreeBSD-src-99c2eebb28f179cf7f98673935ba27d2a1dc9c23.tar.gz |
Print PCB hash miss statistic.
-rw-r--r-- | usr.bin/netstat/inet.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/netstat/inet.c b/usr.bin/netstat/inet.c index 057f150..3046796 100644 --- a/usr.bin/netstat/inet.c +++ b/usr.bin/netstat/inet.c @@ -268,6 +268,7 @@ udp_stats(off, name) p(udps_noport, "\t%lu dropped due to no socket\n"); p(udps_noportbcast, "\t%lu broadcast/multicast datagram%s dropped due to no socket\n"); p(udps_fullsock, "\t%lu dropped due to full socket buffers\n"); + p(udpps_pcbhashmiss, "\t%lu not for hashed pcb\n"); delivered = udpstat.udps_ipackets - udpstat.udps_hdrops - udpstat.udps_badlen - |