diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-07-18 15:44:37 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-07-18 15:44:37 +0000 |
commit | b2e044fd4e157575fd2d591e91ac3a260fd07f94 (patch) | |
tree | 18aecbc5f0419c0301a7acb2b83e2917a2049ec0 /sys | |
parent | bc1a9dd2f65b9d17b6a423130cd5a1fee56270a5 (diff) |
kill some more netiso traces - this was in my tree for a bit but I forgot...
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netccitt/if_x25subr.c | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/sys/netccitt/if_x25subr.c b/sys/netccitt/if_x25subr.c index ca4f2fdfbe4..86750177e92 100644 --- a/sys/netccitt/if_x25subr.c +++ b/sys/netccitt/if_x25subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_x25subr.c,v 1.16 2004/06/21 23:50:37 tholo Exp $ */ +/* $OpenBSD: if_x25subr.c,v 1.17 2004/07/18 15:44:36 henning Exp $ */ /* $NetBSD: if_x25subr.c,v 1.13 1996/05/09 22:29:25 scottr Exp $ */ /* @@ -70,17 +70,6 @@ #include <netns/ns_if.h> #endif -#ifdef ISO -#include <netiso/argo_debug.h> -#include <netiso/iso.h> -#include <netiso/iso_var.h> -#ifdef TPCONS -#include <netiso/tp_param.h> -#include <netiso/tp_var.h> -#endif -#endif - - LIST_HEAD(, llinfo_x25) llinfo_x25; #ifndef _offsetof #define _offsetof(t, m) ((int)((caddr_t)&((t *)0)->m)) @@ -201,12 +190,6 @@ x25_ifinput(m, v) break; #endif -#ifdef ISO - case AF_ISO: - isr = NETISR_ISO; - inq = &clnlintrq; - break; -#endif default: m_freem(m); ifp->if_noproto++; @@ -713,9 +696,6 @@ struct x25_dgproto { u_char spilen; int (*f)(struct mbuf *, void *); } x25_dgprototab[] = { -#if defined(ISO) && defined(TPCONS) - { 0x0, 0, tp_incoming }, -#endif { 0xcc, 1, x25_dgram_incoming }, { 0xcd, 1, x25_dgram_incoming }, { 0x81, 1, x25_dgram_incoming }, |