From 80e85e32a582ff3a03a87cb98dd996b7929f824b Mon Sep 17 00:00:00 2001 From: glebius Date: Fri, 14 Mar 2014 06:29:43 +0000 Subject: Remove AppleTalk support. AppleTalk was a network transport protocol for Apple Macintosh devices in 80s and then 90s. Starting with Mac OS X in 2000 the AppleTalk was a legacy protocol and primary networking protocol is TCP/IP. The last Mac OS X release to support AppleTalk happened in 2009. The same year routing equipment vendors (namely Cisco) end their support. Thus, AppleTalk won't be supported in FreeBSD 11.0-RELEASE. --- sys/netinet/ip_gre.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'sys/netinet') diff --git a/sys/netinet/ip_gre.c b/sys/netinet/ip_gre.c index e4a84ce..10fcbce 100644 --- a/sys/netinet/ip_gre.c +++ b/sys/netinet/ip_gre.c @@ -41,7 +41,6 @@ __FBSDID("$FreeBSD$"); #include "opt_inet.h" -#include "opt_atalk.h" #include "opt_inet6.h" #include @@ -74,12 +73,6 @@ __FBSDID("$FreeBSD$"); #error "ip_gre requires INET" #endif -#ifdef NETATALK -#include -#include -#include -#endif - /* Needs IP headers. */ #include @@ -179,12 +172,6 @@ gre_input2(struct mbuf *m ,int hlen, u_char proto) af = AF_INET6; break; #endif -#ifdef NETATALK - case ETHERTYPE_ATALK: - isr = NETISR_ATALK1; - af = AF_APPLETALK; - break; -#endif default: /* Others not yet supported. */ return (m); -- cgit v1.1