diff options
author | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2004-06-21 19:26:03 +0000 |
---|---|---|
committer | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2004-06-21 19:26:03 +0000 |
commit | d953b7a4146ca0af5eaa7c4e5e2f4da2ffda38a5 (patch) | |
tree | 4305fbba15244f3863add39e5aab01b29ade0691 /sys/net/pfvar.h | |
parent | 5d2f68f5a3f30a3832a91389613065ccf8130c15 (diff) |
Get rid of pf_test_eh() wrapper.
ok cedric@ henning@
Diffstat (limited to 'sys/net/pfvar.h')
-rw-r--r-- | sys/net/pfvar.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/net/pfvar.h b/sys/net/pfvar.h index 0961bc04d57..23ff4358ff1 100644 --- a/sys/net/pfvar.h +++ b/sys/net/pfvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pfvar.h,v 1.197 2004/06/14 20:53:27 cedric Exp $ */ +/* $OpenBSD: pfvar.h,v 1.198 2004/06/21 19:26:01 mcbride Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -1341,13 +1341,11 @@ void pf_rm_rule(struct pf_rulequeue *, struct pf_rule *); #ifdef INET -int pf_test(int, struct ifnet *, struct mbuf **); -int pf_test_eh(int, struct ifnet *, struct mbuf **, struct ether_header *); +int pf_test(int, struct ifnet *, struct mbuf **, struct ether_header *); #endif /* INET */ #ifdef INET6 -int pf_test6(int, struct ifnet *, struct mbuf **); -int pf_test6_eh(int, struct ifnet *, struct mbuf **, struct ether_header *); +int pf_test6(int, struct ifnet *, struct mbuf **, struct ether_header *); void pf_poolmask(struct pf_addr *, struct pf_addr*, struct pf_addr *, struct pf_addr *, u_int8_t); void pf_addr_inc(struct pf_addr *, sa_family_t); |