diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2004-06-20 18:16:51 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2004-06-20 18:16:51 +0000 |
commit | be08ad3d22f0423e3500f5e451524e48eb04f7fc (patch) | |
tree | 0a6e0234d49d85491db045a970d6992c7903ed76 /sys/netinet/tcp_input.c | |
parent | 0ba3c390669638266bf33fe8993ef1fbf0f6e407 (diff) |
remove #ifdef TUBA
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index c7e594f3dfc..4e444260b28 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.173 2004/06/14 08:26:49 dhartmei Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.174 2004/06/20 18:16:50 itojun Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -68,7 +68,6 @@ * Research Laboratory (NRL). */ -#ifndef TUBA_INCLUDE #include <sys/param.h> #include <sys/systm.h> #include <sys/mbuf.h> @@ -122,7 +121,6 @@ int tcp_ackdrop_ppslim = 100; /* 100pps */ int tcp_ackdrop_ppslim_count = 0; struct timeval tcp_ackdrop_ppslim_last; -#endif /* TUBA_INCLUDE */ #define TCP_PAWS_IDLE (24 * 24 * 60 * 60 * PR_SLOWHZ) /* for modulo comparisons of timestamps */ @@ -182,8 +180,6 @@ do { \ * when segments are out of order (so fast retransmit can work). */ -#ifndef TUBA_INCLUDE - int tcp_reass(tp, th, m, tlen) struct tcpcb *tp; @@ -542,7 +538,6 @@ tcp_input(struct mbuf *m, ...) break; #endif } -#endif /* TUBA_INCLUDE */ /* * Check that TCP offset makes sense, @@ -2164,7 +2159,6 @@ drop: m_freem(m); return; -#ifndef TUBA_INCLUDE } int @@ -3084,7 +3078,6 @@ tcp_mss_update(tp) } } -#endif /* TUBA_INCLUDE */ #if defined (TCP_SACK) /* |