Merge pull request #2297 from lucas-clemente/increase-cwnd

increase the maximum congestion window to 10000 packets
This commit is contained in:
Marten Seemann
2020-01-17 16:38:28 +07:00
committed by GitHub

View File

@@ -8,7 +8,7 @@ const MaxPacketSizeIPv4 = 1252
// MaxPacketSizeIPv6 is the maximum packet size that we use for sending IPv6 packets.
const MaxPacketSizeIPv6 = 1232
const defaultMaxCongestionWindowPackets = 1000
const defaultMaxCongestionWindowPackets = 10000
// DefaultMaxCongestionWindow is the default for the max congestion window
const DefaultMaxCongestionWindow ByteCount = defaultMaxCongestionWindowPackets * DefaultTCPMSS