diff options
Diffstat (limited to 'sys/net/if_spppsubr.c')
-rw-r--r-- | sys/net/if_spppsubr.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/sys/net/if_spppsubr.c b/sys/net/if_spppsubr.c index e02ef90..36ede2b 100644 --- a/sys/net/if_spppsubr.c +++ b/sys/net/if_spppsubr.c @@ -92,13 +92,6 @@ #include <netns/ns_if.h> #endif -#ifdef ISO -#include <netiso/argo_debug.h> -#include <netiso/iso.h> -#include <netiso/iso_var.h> -#include <netiso/iso_snpac.h> -#endif - #include <net/if_sppp.h> #if defined(__FreeBSD__) && __FreeBSD__ >= 3 @@ -537,15 +530,6 @@ sppp_input(struct ifnet *ifp, struct mbuf *m) } break; #endif -#ifdef ISO - case PPP_ISO: - /* OSI NLCP not implemented yet */ - if (sp->pp_phase == PHASE_NETWORK) { - schednetisr (NETISR_ISO); - inq = &clnlintrq; - } - break; -#endif } break; case CISCO_MULTICAST: @@ -770,13 +754,6 @@ sppp_output(struct ifnet *ifp, struct mbuf *m, ETHERTYPE_IPX : PPP_IPX); break; #endif -#ifdef ISO - case AF_ISO: /* ISO OSI Protocol */ - if (sp->pp_mode == IFF_CISCO) - goto nosupport; - h->protocol = htons (PPP_ISO); - break; -#endif nosupport: default: m_freem (m); |