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.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c
index 0e36553..e761acc 100644
--- a/sys/netinet/tcp_output.c
+++ b/sys/netinet/tcp_output.c
@@ -310,8 +310,10 @@ after_sack_rexmit:
* sending new data, having retransmitted all the
* data possible in the scoreboard.
*/
- len = so->so_snd.sb_cc - off;
- cwin = sendwin - (tp->snd_nxt - tp->sack_newdata) -
+ len = ((long)ulmin(so->so_snd.sb_cc, tp->snd_wnd)
+ - off);
+ cwin = tp->snd_cwnd -
+ (tp->snd_nxt - tp->sack_newdata) -
sack_bytes_rxmt;
if (cwin < 0)
cwin = 0;
OpenPOWER on IntegriCloud