mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
use actually used datagram size for congestion controller calculations
This commit is contained in:
parent
d4de582fad
commit
281fb1d0b8
2 changed files with 7 additions and 7 deletions
|
@ -10,12 +10,12 @@ import (
|
||||||
const (
|
const (
|
||||||
// maxDatagramSize is the default maximum packet size used in the Linux TCP implementation.
|
// maxDatagramSize is the default maximum packet size used in the Linux TCP implementation.
|
||||||
// Used in QUIC for congestion window computations in bytes.
|
// Used in QUIC for congestion window computations in bytes.
|
||||||
maxDatagramSize protocol.ByteCount = 1460
|
maxDatagramSize = protocol.ByteCount(protocol.MaxPacketSizeIPv4)
|
||||||
maxBurstBytes = 3 * maxDatagramSize
|
maxBurstBytes = 3 * maxDatagramSize
|
||||||
renoBeta float32 = 0.7 // Reno backoff factor.
|
renoBeta float32 = 0.7 // Reno backoff factor.
|
||||||
maxCongestionWindow = protocol.MaxCongestionWindowPackets * maxDatagramSize
|
maxCongestionWindow = protocol.MaxCongestionWindowPackets * maxDatagramSize
|
||||||
minCongestionWindow = 2 * maxDatagramSize
|
minCongestionWindow = 2 * maxDatagramSize
|
||||||
initialCongestionWindow = 32 * maxDatagramSize
|
initialCongestionWindow = 32 * maxDatagramSize
|
||||||
)
|
)
|
||||||
|
|
||||||
type cubicSender struct {
|
type cubicSender struct {
|
||||||
|
|
|
@ -231,7 +231,7 @@ var _ = Describe("Cubic", func() {
|
||||||
clock.Advance(100 * time.Millisecond)
|
clock.Advance(100 * time.Millisecond)
|
||||||
currentCwnd = cubic.CongestionWindowAfterAck(maxDatagramSize, currentCwnd, rttMin, clock.Now())
|
currentCwnd = cubic.CongestionWindowAfterAck(maxDatagramSize, currentCwnd, rttMin, clock.Now())
|
||||||
}
|
}
|
||||||
expectedCwnd = 553632
|
expectedCwnd = 553632 * maxDatagramSize / 1460
|
||||||
Expect(currentCwnd).To(Equal(expectedCwnd))
|
Expect(currentCwnd).To(Equal(expectedCwnd))
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue