tcp: update also tcp_output with regard to RFC 5681

Thanks to Ilpo Jarvinen, this updates also the initial window
setting for tcp_output with regard to RFC 5681.

Signed-off-by: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Gerrit Renker 2010-09-01 00:28:35 +00:00 committed by David S. Miller
parent fa50d64576
commit 0705c6f0e2

View File

@ -224,16 +224,10 @@ void tcp_select_initial_window(int __space, __u32 mss,
} }
} }
/* Set initial window to value enough for senders, /* Set initial window to value enough for senders, following RFC5681. */
* following RFC2414. Senders, not following this RFC,
* will be satisfied with 2.
*/
if (mss > (1 << *rcv_wscale)) { if (mss > (1 << *rcv_wscale)) {
int init_cwnd = 4; int init_cwnd = rfc3390_bytes_to_packets(mss);
if (mss > 1460 * 3)
init_cwnd = 2;
else if (mss > 1460)
init_cwnd = 3;
/* when initializing use the value from init_rcv_wnd /* when initializing use the value from init_rcv_wnd
* rather than the default from above * rather than the default from above
*/ */