diff options
| author | Garrett Wollman <wollman@FreeBSD.org> | 1997-01-21 21:08:09 +0000 |
|---|---|---|
| committer | Garrett Wollman <wollman@FreeBSD.org> | 1997-01-21 21:08:09 +0000 |
| commit | 82c39223b9af034dce5fe6d2466d77e888b37a12 (patch) | |
| tree | b5d5578d9af1237d0032e473a65aa78c1e25aedb /sys/netinet | |
| parent | 3cf6d2e79287107cf42709ace857680d50209e86 (diff) | |
Notes
Diffstat (limited to 'sys/netinet')
| -rw-r--r-- | sys/netinet/ip_input.c | 2 | ||||
| -rw-r--r-- | sys/netinet/ip_var.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c index 8ac811f4655b..48dfff18e17b 100644 --- a/sys/netinet/ip_input.c +++ b/sys/netinet/ip_input.c @@ -412,7 +412,7 @@ tooshort: */ IN_LOOKUP_MULTI(ip->ip_dst, m->m_pkthdr.rcvif, inm); if (inm == NULL) { - ipstat.ips_cantforward++; + ipstat.ips_notmember++; m_freem(m); return; } diff --git a/sys/netinet/ip_var.h b/sys/netinet/ip_var.h index 28f930e20293..5f595b51c0f6 100644 --- a/sys/netinet/ip_var.h +++ b/sys/netinet/ip_var.h @@ -147,6 +147,7 @@ struct ipstat { u_long ips_badvers; /* ip version != 4 */ u_long ips_rawout; /* total raw ip packets generated */ u_long ips_toolong; /* ip length > max ip packet size */ + u_long ips_notmember; /* multicasts for unregistered grps */ }; #ifdef KERNEL |
