mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
rename MaxPacketSizeIPv{4,6} to InitialPacketSizeIPv{4,6}
This commit is contained in:
parent
2c45f2b11d
commit
eea0b1eacd
5 changed files with 12 additions and 12 deletions
|
@ -11,7 +11,7 @@ import (
|
|||
const (
|
||||
// maxDatagramSize is the default maximum packet size used in the Linux TCP implementation.
|
||||
// Used in QUIC for congestion window computations in bytes.
|
||||
maxDatagramSize = protocol.ByteCount(protocol.MaxPacketSizeIPv4)
|
||||
maxDatagramSize = protocol.ByteCount(protocol.InitialPacketSizeIPv4)
|
||||
maxBurstBytes = 3 * maxDatagramSize
|
||||
renoBeta = 0.7 // Reno backoff factor.
|
||||
maxCongestionWindow = protocol.MaxCongestionWindowPackets * maxDatagramSize
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue