use actually used datagram size for congestion controller calculations

This commit is contained in:
Marten Seemann 2020-01-22 15:04:03 +07:00
parent d4de582fad
commit 281fb1d0b8
2 changed files with 7 additions and 7 deletions

View file

@ -10,12 +10,12 @@ 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 = 1460
maxBurstBytes = 3 * maxDatagramSize
renoBeta float32 = 0.7 // Reno backoff factor.
maxCongestionWindow = protocol.MaxCongestionWindowPackets * maxDatagramSize
minCongestionWindow = 2 * maxDatagramSize
initialCongestionWindow = 32 * maxDatagramSize
maxDatagramSize = protocol.ByteCount(protocol.MaxPacketSizeIPv4)
maxBurstBytes = 3 * maxDatagramSize
renoBeta float32 = 0.7 // Reno backoff factor.
maxCongestionWindow = protocol.MaxCongestionWindowPackets * maxDatagramSize
minCongestionWindow = 2 * maxDatagramSize
initialCongestionWindow = 32 * maxDatagramSize
)
type cubicSender struct {