aboutsummaryrefslogtreecommitdiff
path: root/sys/net/if_loop.c
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>1995-10-26 20:31:59 +0000
committerJulian Elischer <julian@FreeBSD.org>1995-10-26 20:31:59 +0000
commitcc6a66f20e9c3dbde378e543b40bea846059e2d3 (patch)
treed823a4d0efac391c6dfad3ac2e27c0e984cea732 /sys/net/if_loop.c
parent059a9bc2bb95ccc3a5f6b8f40819813380523d7e (diff)
downloadsrc-cc6a66f20e9c3dbde378e543b40bea846059e2d3.tar.gz
src-cc6a66f20e9c3dbde378e543b40bea846059e2d3.zip
Reviewed by: julian and jhay@mikom.csir.co.za
Submitted by: Mike Mitchell, supervisor@alb.asctmd.com This is a bulk mport of Mike's IPX/SPX protocol stacks and all the related gunf that goes with it.. it is not guaranteed to work 100% correctly at this time but as we had several people trying to work on it I figured it would be better to get it checked in so they could all get teh same thing to work on.. Mikes been using it for a year or so but on 2.0 more changes and stuff will be merged in from other developers now that this is in. Mike Mitchell, Network Engineer AMTECH Systems Corporation, Technology and Manufacturing 8600 Jefferson Street, Albuquerque, New Mexico 87113 (505) 856-8000 supervisor@alb.asctmd.com
Notes
Notes: svn path=/head/; revision=11819
Diffstat (limited to 'sys/net/if_loop.c')
-rw-r--r--sys/net/if_loop.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/sys/net/if_loop.c b/sys/net/if_loop.c
index 5bf79ee06ae2..cf29912ac49d 100644
--- a/sys/net/if_loop.c
+++ b/sys/net/if_loop.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)if_loop.c 8.1 (Berkeley) 6/10/93
- * $Id: if_loop.c,v 1.12 1995/09/09 18:10:22 davidg Exp $
+ * $Id: if_loop.c,v 1.13 1995/09/22 17:57:48 wollman Exp $
*/
/*
@@ -63,6 +63,11 @@
#include <netinet/ip.h>
#endif
+#ifdef IPX
+#include <netipx/ipx.h>
+#include <netipx/ipx_if.h>
+#endif
+
#ifdef NS
#include <netns/ns.h>
#include <netns/ns_if.h>
@@ -169,6 +174,12 @@ looutput(ifp, m, dst, rt)
isr = NETISR_IP;
break;
#endif
+#ifdef IPX
+ case AF_IPX:
+ ifq = &ipxintrq;
+ isr = NETISR_IPX;
+ break;
+#endif
#ifdef NS
case AF_NS:
ifq = &nsintrq;