diff options
| author | 2007-06-06 10:04:36 +0000 | |
|---|---|---|
| committer | 2007-06-06 10:04:36 +0000 | |
| commit | 09b5ee87c7ee71e5498666b33a6aced375010936 (patch) | |
| tree | 9e0dc701da5324b309ec70debec21cac4bb39b9a /sys/net/if_loop.c | |
| parent | put IPX in the unsupported boat (diff) | |
| download | wireguard-openbsd-09b5ee87c7ee71e5498666b33a6aced375010936.tar.xz wireguard-openbsd-09b5ee87c7ee71e5498666b33a6aced375010936.zip | |
remove remaining IPX hooks. all inside #ifdef IPX, so no actual change
Diffstat (limited to 'sys/net/if_loop.c')
| -rw-r--r-- | sys/net/if_loop.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/sys/net/if_loop.c b/sys/net/if_loop.c index 84cf8471e84..3485bc75b2d 100644 --- a/sys/net/if_loop.c +++ b/sys/net/if_loop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_loop.c,v 1.40 2006/03/25 22:41:47 djm Exp $ */ +/* $OpenBSD: if_loop.c,v 1.41 2007/06/06 10:04:36 henning Exp $ */ /* $NetBSD: if_loop.c,v 1.15 1996/05/07 02:40:33 thorpej Exp $ */ /* @@ -138,11 +138,6 @@ #include <netinet/ip6.h> #endif -#ifdef IPX -#include <netipx/ipx.h> -#include <netipx/ipx_if.h> -#endif - #ifdef NETATALK #include <netinet/if_ether.h> #include <netatalk/at.h> @@ -299,12 +294,6 @@ looutput(ifp, m, dst, rt) isr = NETISR_IPV6; break; #endif /* INET6 */ -#ifdef IPX - case AF_IPX: - ifq = &ipxintrq; - isr = NETISR_IPX; - break; -#endif #ifdef NETATALK case AF_APPLETALK: ifq = &atintrq2; @@ -367,12 +356,6 @@ lo_altqstart(ifp) isr = NETISR_IPV6; break; #endif -#ifdef IPX - case AF_IPX: - ifq = &ipxintrq; - isr = NETISR_IPX; - break; -#endif #ifdef NETATALK case AF_APPLETALK: ifq = &atintrq2; |
