diff options
| author | Julian Elischer <julian@FreeBSD.org> | 1995-10-26 20:31:59 +0000 |
|---|---|---|
| committer | Julian Elischer <julian@FreeBSD.org> | 1995-10-26 20:31:59 +0000 |
| commit | cc6a66f20e9c3dbde378e543b40bea846059e2d3 (patch) | |
| tree | d823a4d0efac391c6dfad3ac2e27c0e984cea732 /sys/net/if_loop.c | |
| parent | 059a9bc2bb95ccc3a5f6b8f40819813380523d7e (diff) | |
Notes
Diffstat (limited to 'sys/net/if_loop.c')
| -rw-r--r-- | sys/net/if_loop.c | 13 |
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; |
