diff options
| author | 2005-06-08 06:35:04 +0000 | |
|---|---|---|
| committer | 2005-06-08 06:35:04 +0000 | |
| commit | 25d96bc426ab15865c717dddf2715520f1948467 (patch) | |
| tree | 357fd3b5cc27359fcc5d0ed42551d4ef30466777 /sys/net/if_loop.c | |
| parent | bye bye netns (diff) | |
| download | wireguard-openbsd-25d96bc426ab15865c717dddf2715520f1948467.tar.xz wireguard-openbsd-25d96bc426ab15865c717dddf2715520f1948467.zip | |
no more netns handling for the various tunnel devices and loopback
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 97ab1f34376..c2f77ad859c 100644 --- a/sys/net/if_loop.c +++ b/sys/net/if_loop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_loop.c,v 1.33 2004/07/16 15:01:09 henning Exp $ */ +/* $OpenBSD: if_loop.c,v 1.34 2005/06/08 06:35:04 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 NS -#include <netns/ns.h> -#include <netns/ns_if.h> -#endif - #ifdef IPX #include <netipx/ipx.h> #include <netipx/ipx_if.h> @@ -321,12 +316,6 @@ looutput(ifp, m, dst, rt) isr = NETISR_IPV6; break; #endif /* INET6 */ -#ifdef NS - case AF_NS: - ifq = &nsintrq; - isr = NETISR_NS; - break; -#endif #ifdef IPX case AF_IPX: ifq = &ipxintrq; @@ -401,12 +390,6 @@ lo_altqstart(ifp) isr = NETISR_IPX; break; #endif -#ifdef NS - case AF_NS: - ifq = &nsintrq; - isr = NETISR_NS; - break; -#endif #ifdef NETATALK case AF_APPLETALK: ifq = &atintrq2; |
