diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2024-07-13 10:09:41 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2024-07-13 10:09:41 +0000 |
commit | 06c98dbcc118d5bb64de3e3ba001584943974636 (patch) | |
tree | ae4bb8b40942add91bc0c5dcde48e4f07c9cefa4 /sys | |
parent | 7bdc6b674e1a585c5d66c40f2c390a1d533554da (diff) |
Previous commit broke RAMDISK_CD kernel build. Always include udp.h
in ip6_forward.c.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet6/ip6_forward.c | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/sys/netinet6/ip6_forward.c b/sys/netinet6/ip6_forward.c index 790fb842e56..5d2cf55592a 100644 --- a/sys/netinet6/ip6_forward.c +++ b/sys/netinet6/ip6_forward.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6_forward.c,v 1.122 2024/07/13 09:34:26 bluhm Exp $ */ +/* $OpenBSD: ip6_forward.c,v 1.123 2024/07/13 10:09:40 bluhm Exp $ */ /* $KAME: ip6_forward.c,v 1.75 2001/06/29 12:42:13 jinmei Exp $ */ /* @@ -45,6 +45,9 @@ #include <net/if_var.h> #include <net/if_enc.h> #include <net/route.h> +#if NPF > 0 +#include <net/pfvar.h> +#endif #include <netinet/in.h> #include <netinet/ip_var.h> @@ -53,20 +56,15 @@ #include <netinet6/ip6_var.h> #include <netinet/icmp6.h> #include <netinet6/nd6.h> - -#if NPF > 0 -#include <net/pfvar.h> -#endif - +#include <netinet/udp.h> +#include <netinet/tcp.h> +#include <netinet/tcp_timer.h> +#include <netinet/tcp_var.h> #ifdef IPSEC #include <netinet/ip_ipsp.h> #include <netinet/ip_ah.h> #include <netinet/ip_esp.h> -#include <netinet/udp.h> #endif -#include <netinet/tcp.h> -#include <netinet/tcp_timer.h> -#include <netinet/tcp_var.h> /* * Forward a packet. If some error occurs return the sender |