diff options
| author | ozaki-r <ozaki-r@NetBSD.org> | 2015-03-30 04:25:26 +0000 |
|---|---|---|
| committer | ozaki-r <ozaki-r@NetBSD.org> | 2015-03-30 04:25:26 +0000 |
| commit | cbce5ae4ce69f5e7e9fb7ef0a0807f2223b0f6fb (patch) | |
| tree | 0c6df898c34648c4729a2237001b2f236ce04a94 /sys/netinet6/udp6_usrreq.c | |
| parent | 4f0c5938b0a2c40fa572a13ffe8e201776db8181 (diff) | |
Tidy up opt_ipsec.h inclusions
Diffstat (limited to 'sys/netinet6/udp6_usrreq.c')
| -rw-r--r-- | sys/netinet6/udp6_usrreq.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/sys/netinet6/udp6_usrreq.c b/sys/netinet6/udp6_usrreq.c index d468d0c79c8..d27096397a0 100644 --- a/sys/netinet6/udp6_usrreq.c +++ b/sys/netinet6/udp6_usrreq.c @@ -1,4 +1,4 @@ -/* $NetBSD: udp6_usrreq.c,v 1.115 2014/08/09 05:33:01 rtr Exp $ */ +/* $NetBSD: udp6_usrreq.c,v 1.116 2015/03/30 04:25:26 ozaki-r Exp $ */ /* $KAME: udp6_usrreq.c,v 1.86 2001/05/27 17:33:00 itojun Exp $ */ /* @@ -62,10 +62,11 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: udp6_usrreq.c,v 1.115 2014/08/09 05:33:01 rtr Exp $"); +__KERNEL_RCSID(0, "$NetBSD: udp6_usrreq.c,v 1.116 2015/03/30 04:25:26 ozaki-r Exp $"); #include "opt_inet.h" #include "opt_inet_csum.h" +#include "opt_ipsec.h" #include <sys/param.h> #include <sys/mbuf.h> @@ -103,6 +104,15 @@ __KERNEL_RCSID(0, "$NetBSD: udp6_usrreq.c,v 1.115 2014/08/09 05:33:01 rtr Exp $" #include <netinet6/ip6protosw.h> #include <netinet6/scope6_var.h> +#ifdef IPSEC +#include <netipsec/ipsec.h> +#include <netipsec/ipsec_var.h> +#include <netipsec/ipsec_private.h> +#ifdef INET6 +#include <netipsec/ipsec6.h> +#endif +#endif /* IPSEC */ + #include "faith.h" #if defined(NFAITH) && NFAITH > 0 #include <net/if_faith.h> |
