summaryrefslogtreecommitdiffstats
path: root/sys/netipx
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>2000-01-24 20:39:02 +0000
committerbrian <brian@FreeBSD.org>2000-01-24 20:39:02 +0000
commit26fcba4c5a7ef6f95d130417d6ee6470eb0c7263 (patch)
treee9ac1c6bbc9bf92fe70fb1e226ece21e411aa386 /sys/netipx
parentff67a728896198b2e1e203c6b280755f7bdcd480 (diff)
downloadFreeBSD-src-26fcba4c5a7ef6f95d130417d6ee6470eb0c7263.zip
FreeBSD-src-26fcba4c5a7ef6f95d130417d6ee6470eb0c7263.tar.gz
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
Diffstat (limited to 'sys/netipx')
-rw-r--r--sys/netipx/ipx_input.c3
1 files changed, 2 insertions, 1 deletions
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 <net/if.h>
#include <net/route.h>
#include <net/netisr.h>
+#include <net/intrq.h>
#include <netipx/ipx.h>
#include <netipx/spx.h>
@@ -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);
OpenPOWER on IntegriCloud