diff options
author | Bruce M Simpson <bms@FreeBSD.org> | 2007-06-12 16:24:56 +0000 |
---|---|---|
committer | Bruce M Simpson <bms@FreeBSD.org> | 2007-06-12 16:24:56 +0000 |
commit | 71498f308b2324dbd94e94fd8c4ae41bf4bd663b (patch) | |
tree | ef2e1b349db858481633196c1f4a1cc9cd67fe16 /usr.bin/netstat/inet.c | |
parent | 645016c0e428f5acb73007eb3c79ab0aee92ffa5 (diff) |
Notes
Diffstat (limited to 'usr.bin/netstat/inet.c')
-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 2d96cb669677..1be7b874b58f 100644 --- a/usr.bin/netstat/inet.c +++ b/usr.bin/netstat/inet.c @@ -513,7 +513,7 @@ udp_stats(u_long off __unused, const char *name, int af1 __unused) p1a(udps_nosum, "\t%lu with no checksum\n"); p1a(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"); + "\t%lu broadcast/multicast datagram%s undelivered\n"); p1a(udps_fullsock, "\t%lu dropped due to full socket buffers\n"); p1a(udpps_pcbhashmiss, "\t%lu not for hashed pcb\n"); delivered = udpstat.udps_ipackets - @@ -526,6 +526,9 @@ udp_stats(u_long off __unused, const char *name, int af1 __unused) if (delivered || sflag <= 1) printf("\t%lu delivered\n", delivered); p(udps_opackets, "\t%lu datagram%s output\n"); + /* the next statistic is cumulative in udps_noportbcast */ + p(udps_filtermcast, + "\t%lu time%s multicast source filter matched\n"); #undef p #undef p1a } |