summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_output.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/netinet/tcp_output.c')
-rw-r--r--sys/netinet/tcp_output.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c
index c69b90a..5d71887 100644
--- a/sys/netinet/tcp_output.c
+++ b/sys/netinet/tcp_output.c
@@ -356,8 +356,13 @@ after_sack_rexmit:
len = tp->t_maxseg;
sendalot = 1;
}
- if (off + len < so->so_snd.sb_cc)
- flags &= ~TH_FIN;
+ if (sack_rxmit) {
+ if (SEQ_LT(p->rxmit + len, tp->snd_una + so->so_snd.sb_cc))
+ flags &= ~TH_FIN;
+ } else {
+ if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + so->so_snd.sb_cc))
+ flags &= ~TH_FIN;
+ }
recwin = sbspace(&so->so_rcv);
@@ -1088,8 +1093,12 @@ timer:
* No need to check for TH_FIN here because
* the TF_SENTFIN flag handles that case.
*/
- if ((flags & TH_SYN) == 0)
- tp->snd_nxt -= len;
+ if ((flags & TH_SYN) == 0) {
+ if (sack_rxmit)
+ p->rxmit -= len;
+ else
+ tp->snd_nxt -= len;
+ }
}
out:
OpenPOWER on IntegriCloud