diff options
author | 2009-07-21 14:48:08 +0000 | |
---|---|---|
committer | 2009-07-21 14:48:08 +0000 | |
commit | 0534e01c4fa6967e93bc2ac3df96f56c2f4069b4 (patch) | |
tree | a8f84979aec57fd0681496982d4ab1e74f56c87b | |
parent | Support KERN_FILE_TEXT here too (diff) | |
download | wireguard-openbsd-0534e01c4fa6967e93bc2ac3df96f56c2f4069b4.tar.xz wireguard-openbsd-0534e01c4fa6967e93bc2ac3df96f56c2f4069b4.zip |
pf_scrub_ip/ip6 prototypes are already in pfvar.h
-rw-r--r-- | sys/net/pf_norm.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/net/pf_norm.c b/sys/net/pf_norm.c index d111ed5ecb3..330ed24b6aa 100644 --- a/sys/net/pf_norm.c +++ b/sys/net/pf_norm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf_norm.c,v 1.118 2009/06/25 09:30:28 sthen Exp $ */ +/* $OpenBSD: pf_norm.c,v 1.119 2009/07/21 14:48:08 henning Exp $ */ /* * Copyright 2001 Niels Provos <provos@citi.umich.edu> @@ -113,11 +113,6 @@ void pf_free_fragment(struct pf_fragment *); struct pf_fragment *pf_find_fragment(struct ip *, struct pf_frag_tree *); struct mbuf *pf_reassemble(struct mbuf **, struct pf_fragment **, struct pf_frent *, int); -void pf_scrub_ip(struct mbuf **, u_int16_t, u_int8_t, - u_int8_t); -#ifdef INET6 -void pf_scrub_ip6(struct mbuf **, u_int8_t); -#endif #define DPFPRINTF(x) do { \ if (pf_status.debug >= PF_DEBUG_MISC) { \ |