diff options
author | wollman <wollman@FreeBSD.org> | 1997-01-21 21:08:57 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1997-01-21 21:08:57 +0000 |
commit | fe537196d330ad8f0b38629a10633c0313ffd586 (patch) | |
tree | f12239c1646c1f1145ebcfdd6b6f7740e26b2943 /usr.bin | |
parent | a159cf05c63e7a0e36c1ec3e78bc1e58179da823 (diff) | |
download | FreeBSD-src-fe537196d330ad8f0b38629a10633c0313ffd586.zip FreeBSD-src-fe537196d330ad8f0b38629a10633c0313ffd586.tar.gz |
Print out the new uninteresting-multicast-packets statistic.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/netstat/inet.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/netstat/inet.c b/usr.bin/netstat/inet.c index 15e3c4b..9247c09 100644 --- a/usr.bin/netstat/inet.c +++ b/usr.bin/netstat/inet.c @@ -333,10 +333,13 @@ ip_stats(off, name) p(ips_noproto, "\t%lu packet%s for unknown/unsupported protocol\n"); p(ips_forward, "\t%lu packet%s forwarded\n"); p(ips_cantforward, "\t%lu packet%s not forwardable\n"); + p(ips_notmember, + "\t%lu packet%s received for unknown multicast group\n"); p(ips_redirectsent, "\t%lu redirect%s sent\n"); p(ips_localout, "\t%lu packet%s sent from this host\n"); p(ips_rawout, "\t%lu packet%s sent with fabricated ip header\n"); - p(ips_odropped, "\t%lu output packet%s dropped due to no bufs, etc.\n"); + p(ips_odropped, + "\t%lu output packet%s dropped due to no bufs, etc.\n"); p(ips_noroute, "\t%lu output packet%s discarded due to no route\n"); p(ips_fragmented, "\t%lu output datagram%s fragmented\n"); p(ips_ofragments, "\t%lu fragment%s created\n"); |