From 26fcba4c5a7ef6f95d130417d6ee6470eb0c7263 Mon Sep 17 00:00:00 2001 From: brian Date: Mon, 24 Jan 2000 20:39:02 +0000 Subject: Move the *intrq variables into net/intrq.c and unconditionally include this in all kernels. Declare some const *intrq_present variables that can be checked by a module prior to using *intrq to queue data. Make the if_tun module capable of processing atm, ip, ip6, ipx, natm and netatalk packets when TUNSIFHEAD is ioctl()d on. Review not required by: freebsd-hackers --- sys/netipx/ipx_input.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sys/netipx') diff --git a/sys/netipx/ipx_input.c b/sys/netipx/ipx_input.c index 0b51a9b..7494912 100644 --- a/sys/netipx/ipx_input.c +++ b/sys/netipx/ipx_input.c @@ -47,6 +47,7 @@ #include #include #include +#include #include #include @@ -86,10 +87,10 @@ static u_short allones[] = {-1, -1, -1}; struct ipxpcb ipxpcb; struct ipxpcb ipxrawpcb; -struct ifqueue ipxintrq; static int ipxqmaxlen = IFQ_MAXLEN; long ipx_pexseq; +const int ipxintrq_present = 1; NETISR_SET(NETISR_IPX, ipxintr); -- cgit v1.1