diff options
author | Jonathan Lemon <jlemon@FreeBSD.org> | 2001-11-21 18:45:51 +0000 |
---|---|---|
committer | Jonathan Lemon <jlemon@FreeBSD.org> | 2001-11-21 18:45:51 +0000 |
commit | d00fd2011de2ddfa1ea78e6befacc03c1ed14aaf (patch) | |
tree | 93d856e5c84d50cad3a65577232d84d68b025dcc | |
parent | 75595bf1eb7f92752803f5088d54f76a72de16a4 (diff) |
Notes
-rw-r--r-- | sys/netinet/tcp_input.c | 1 | ||||
-rw-r--r-- | sys/netinet/tcp_reass.c | 1 | ||||
-rw-r--r-- | sys/netinet/tcp_seq.h | 2 |
3 files changed, 1 insertions, 3 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index baa972d614ff..7ab594eaec10 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1139,7 +1139,6 @@ findpcb: tp->irs = th->th_seq; tcp_sendseqinit(tp); tcp_rcvseqinit(tp); - tp->snd_recover = tp->snd_una; /* * Initialization of the tcpcb for transaction; * set SND.WND = SEG.WND, diff --git a/sys/netinet/tcp_reass.c b/sys/netinet/tcp_reass.c index baa972d614ff..7ab594eaec10 100644 --- a/sys/netinet/tcp_reass.c +++ b/sys/netinet/tcp_reass.c @@ -1139,7 +1139,6 @@ findpcb: tp->irs = th->th_seq; tcp_sendseqinit(tp); tcp_rcvseqinit(tp); - tp->snd_recover = tp->snd_una; /* * Initialization of the tcpcb for transaction; * set SND.WND = SEG.WND, diff --git a/sys/netinet/tcp_seq.h b/sys/netinet/tcp_seq.h index c1d36d331135..5850ccc505ee 100644 --- a/sys/netinet/tcp_seq.h +++ b/sys/netinet/tcp_seq.h @@ -73,7 +73,7 @@ #define tcp_sendseqinit(tp) \ (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \ - (tp)->iss + (tp)->snd_recover = (tp)->iss #define TCP_PAWS_IDLE (24 * 24 * 60 * 60 * hz) /* timestamp wrap-around time */ |