increase the maximum congestion window to 10000 packets

This commit is contained in:
Marten Seemann 2020-01-14 16:34:34 +07:00
parent fb9315c4f1
commit b1f8b8f25d

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