summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2000-08-02 01:02:42 +0000
committerPeter Wemm <peter@FreeBSD.org>2000-08-02 01:02:42 +0000
commitb17ec36839723f9c02fe11fbb08b408509f13347 (patch)
tree735d76b8b92c0c2eb8fe7ddb435fb4b07e2cfb57
parent302ec06f615bd21bd432d61149c9529ece0d48c6 (diff)
Notes
-rw-r--r--sys/netinet6/ip6protosw.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/netinet6/ip6protosw.h b/sys/netinet6/ip6protosw.h
index c361219fd46d..7ad5c4e0d12d 100644
--- a/sys/netinet6/ip6protosw.h
+++ b/sys/netinet6/ip6protosw.h
@@ -72,6 +72,11 @@
#define _NETINET6_IP6PROTOSW_H_
/*
+ * For pfil_head structure.
+ */
+#include <net/pfil.h>
+
+/*
* Protocol switch table for IPv6.
* All other definitions should refer to sys/protosw.h
*/
@@ -126,6 +131,7 @@ struct ip6protosw {
void (*pr_drain) /* flush any excess space possible */
__P((void));
struct pr_usrreqs *pr_usrreqs; /* supersedes pr_usrreq() */
+ struct pfil_head pr_pfh;
};
#endif /* !_NETINET6_IP6PROTOSW_H_ */