diff options
author | peter <peter@FreeBSD.org> | 2003-03-05 19:24:24 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-03-05 19:24:24 +0000 |
commit | fbc7526e8f7461209707f4f096b1ec1f9f4aca7b (patch) | |
tree | 5244a504fc54940e377f138f4f959da0cbad8ceb /sys/net/if_loop.c | |
parent | f9806b180393c9a3dbdc1792c27c8175975ff756 (diff) | |
download | FreeBSD-src-fbc7526e8f7461209707f4f096b1ec1f9f4aca7b.zip FreeBSD-src-fbc7526e8f7461209707f4f096b1ec1f9f4aca7b.tar.gz |
Finish driving a stake through the heart of netns and the associated
ifdefs scattered around the place - its dead Jim!
The SMB stuff had stolen AF_NS, make it official.
Diffstat (limited to 'sys/net/if_loop.c')
-rw-r--r-- | sys/net/if_loop.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/sys/net/if_loop.c b/sys/net/if_loop.c index 3e0a8c5..92add8a 100644 --- a/sys/net/if_loop.c +++ b/sys/net/if_loop.c @@ -82,11 +82,6 @@ #include <netinet/ip6.h> #endif -#ifdef NS -#include <netns/ns.h> -#include <netns/ns_if.h> -#endif - #ifdef NETATALK #include <netatalk/at.h> #include <netatalk/at_var.h> @@ -250,7 +245,6 @@ contiguousfail: case AF_INET: case AF_INET6: case AF_IPX: - case AF_NS: case AF_APPLETALK: break; default: @@ -349,11 +343,6 @@ if_simloop(ifp, m, af, hlen) isr = NETISR_IPX; break; #endif -#ifdef NS - case AF_NS: - isr = NETISR_NS; - break; -#endif #ifdef NETATALK case AF_APPLETALK: isr = NETISR_ATALK2; |