TCP协议栈:RFC3390-初始拥塞窗口
程序员文章站
2022-03-07 10:24:01
...
RFC2581的建议(1999年)
初始窗口为1或2个SMSS
RCF3390的建议(2002年)
//min (4*MSS, max (2*MSS, 4380 bytes))
If (MSS <= 1095 bytes)
then win <= 4 * MSS;
If (1095 bytes < MSS < 2190 bytes)
then win <= 4380;
If (2190 bytes <= MSS)
then win <= 2 * MSS;
通常MSS是1460,初始窗口为3个MSS。
GOOGLE的建议(2010年)
Google在文章《An Argument for Increasing TCP's Initial Congestion Window》初始窗口为10个MSS,约15KB。