patch-2.1.122 linux/net/ipv4/tcp_timer.c
Next file: linux/net/ipv4/timer.c
Previous file: linux/net/ipv4/tcp_output.c
Back to the patch index
Back to the overall index
- Lines: 21
- Date:
Mon Sep 14 22:52:10 1998
- Orig file:
v2.1.121/linux/net/ipv4/tcp_timer.c
- Orig date:
Thu Aug 27 19:56:30 1998
diff -u --recursive --new-file v2.1.121/linux/net/ipv4/tcp_timer.c linux/net/ipv4/tcp_timer.c
@@ -5,7 +5,7 @@
*
* Implementation of the Transmission Control Protocol(TCP).
*
- * Version: $Id: tcp_timer.c,v 1.51 1998/05/02 15:19:26 davem Exp $
+ * Version: $Id: tcp_timer.c,v 1.53 1998/09/15 02:11:39 davem Exp $
*
* Authors: Ross Biro, <bir7@leland.Stanford.Edu>
* Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
@@ -466,8 +466,9 @@
/* remember window where we lost
* "one half of the current window but at least 2 segments"
*/
- tp->snd_ssthresh = max(tp->snd_cwnd >> (1 + TCP_CWND_SHIFT), 2);
- tp->snd_cwnd = (1 << TCP_CWND_SHIFT);
+ tp->snd_ssthresh = max(tp->snd_cwnd >> 1, 2);
+ tp->snd_cwnd_cnt = 0;
+ tp->snd_cwnd = 1;
}
tp->retransmits++;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov