diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-06-15 02:24:03 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-06-15 02:24:03 +0000 |
commit | f352a210d489251d188bf6105cae7e702faf2d9e (patch) | |
tree | dd8a9de6765358be9ffa012c0d14980500b56239 | |
parent | 7b77600892791b17d71b2d96947f01d55655a47f (diff) |
handle multicast packets inside ipf too; darren
-rw-r--r-- | sys/netinet/ip_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c index 54d28859028..5b9e9e85fcb 100644 --- a/sys/netinet/ip_output.c +++ b/sys/netinet/ip_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_output.c,v 1.47 1999/05/16 21:48:36 niklas Exp $ */ +/* $OpenBSD: ip_output.c,v 1.48 1999/06/15 02:24:02 deraadt Exp $ */ /* $NetBSD: ip_output.c,v 1.28 1996/02/13 23:43:07 christos Exp $ */ /* @@ -666,6 +666,7 @@ no_encap: } else m->m_flags &= ~M_BCAST; +sendit: #if defined(IPFILTER) || defined(IPFILTER_LKM) /* * looks like most checking has been done now...do a filter check @@ -679,7 +680,6 @@ no_encap: ip = mtod(m = m0, struct ip *); } #endif -sendit: /* * If small enough for interface, can just send directly. */ |