mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
increase the maximum congestion window to 10000 packets
This commit is contained in:
parent
fb9315c4f1
commit
b1f8b8f25d
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue