diff options
author | 2004-06-20 18:16:50 +0000 | |
---|---|---|
committer | 2004-06-20 18:16:50 +0000 | |
commit | f74ca6b99eaca0e6b02468b10c0382ab8e7d49ce (patch) | |
tree | bdd6c147d96bfe94b643ca030f96cd5e9ba619f1 /sys/netinet/tcp_output.c | |
parent | zx(4) support for sparc64, tested on an Ultra 2. (diff) | |
download | wireguard-openbsd-f74ca6b99eaca0e6b02468b10c0382ab8e7d49ce.tar.xz wireguard-openbsd-f74ca6b99eaca0e6b02468b10c0382ab8e7d49ce.zip |
remove #ifdef TUBA
Diffstat (limited to 'sys/netinet/tcp_output.c')
-rw-r--r-- | sys/netinet/tcp_output.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index 6fecca6ba02..c9f7df5c495 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_output.c,v 1.70 2004/06/08 19:47:24 markus Exp $ */ +/* $OpenBSD: tcp_output.c,v 1.71 2004/06/20 18:16:50 itojun Exp $ */ /* $NetBSD: tcp_output.c,v 1.16 1997/06/03 16:17:09 kml Exp $ */ /* @@ -93,11 +93,6 @@ #include <netinet/tcpip.h> #include <netinet/tcp_debug.h> -#ifdef TUBA -#include <netiso/iso.h> -#include <netiso/tuba_table.h> -#endif - #ifdef INET6 #include <netinet6/tcpipv6.h> #include <netinet6/in6_var.h> @@ -1101,12 +1096,6 @@ send: (so->so_options & SO_DONTROUTE), NULL, NULL); break; #endif /* INET6 */ -#ifdef TUBA - case AF_ISO: - if (tp->t_tuba_pcb) - error = tuba_output(m, tp); - break; -#endif /* TUBA */ } #if defined(TCP_SACK) && defined(TCP_FACK) |