diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-01-27 10:04:58 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-01-27 10:04:58 +0000 |
commit | b52a7c673cb776665972b0e9265e491abc43a4b1 (patch) | |
tree | 84675230fa430cfe51b9e73cf11fa58dc9e4f19f /sys/netinet | |
parent | cc0a7779d1635c38e681eea667b0c3fd88dc24db (diff) |
reordered FIN segments caused early termination, bug introduced by ipv6 integration
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/tcp_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 3c82a2d77c7..354c98311b5 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.26 1999/01/15 12:01:06 niklas Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.27 1999/01/27 10:04:57 niklas Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -1936,7 +1936,7 @@ dodata: /* XXX */ sbappend(&so->so_rcv, m); sorwakeup(so); } else { - tcp_reass(tp, th, m, &tlen); + tiflags = tcp_reass(tp, th, m, &tlen); tp->t_flags |= TF_ACKNOW; } #ifdef TCP_SACK |