mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
initialize the slow start threshold to infinity
This commit is contained in:
parent
eea0b1eacd
commit
8895a79e30
2 changed files with 3 additions and 3 deletions
|
@ -83,7 +83,7 @@ func newCubicSender(clock Clock, rttStats *utils.RTTStats, reno bool, initialCon
|
||||||
initialMaxCongestionWindow: initialMaxCongestionWindow,
|
initialMaxCongestionWindow: initialMaxCongestionWindow,
|
||||||
congestionWindow: initialCongestionWindow,
|
congestionWindow: initialCongestionWindow,
|
||||||
minCongestionWindow: minCongestionWindow,
|
minCongestionWindow: minCongestionWindow,
|
||||||
slowStartThreshold: initialMaxCongestionWindow,
|
slowStartThreshold: protocol.MaxByteCount,
|
||||||
maxCongestionWindow: initialMaxCongestionWindow,
|
maxCongestionWindow: initialMaxCongestionWindow,
|
||||||
cubic: NewCubic(clock),
|
cubic: NewCubic(clock),
|
||||||
clock: clock,
|
clock: clock,
|
||||||
|
|
|
@ -289,7 +289,7 @@ var _ = Describe("Cubic Sender", func() {
|
||||||
|
|
||||||
It("RTO congestion window", func() {
|
It("RTO congestion window", func() {
|
||||||
Expect(sender.GetCongestionWindow()).To(Equal(defaultWindowTCP))
|
Expect(sender.GetCongestionWindow()).To(Equal(defaultWindowTCP))
|
||||||
Expect(sender.slowStartThreshold).To(Equal(MaxCongestionWindow))
|
Expect(sender.slowStartThreshold).To(Equal(protocol.MaxByteCount))
|
||||||
|
|
||||||
// Expect the window to decrease to the minimum once the RTO fires
|
// Expect the window to decrease to the minimum once the RTO fires
|
||||||
// and slow start threshold to be set to 1/2 of the CWND.
|
// and slow start threshold to be set to 1/2 of the CWND.
|
||||||
|
@ -420,7 +420,7 @@ var _ = Describe("Cubic Sender", func() {
|
||||||
|
|
||||||
It("reset after connection migration", func() {
|
It("reset after connection migration", func() {
|
||||||
Expect(sender.GetCongestionWindow()).To(Equal(defaultWindowTCP))
|
Expect(sender.GetCongestionWindow()).To(Equal(defaultWindowTCP))
|
||||||
Expect(sender.slowStartThreshold).To(Equal(MaxCongestionWindow))
|
Expect(sender.slowStartThreshold).To(Equal(protocol.MaxByteCount))
|
||||||
|
|
||||||
// Starts with slow start.
|
// Starts with slow start.
|
||||||
const numberOfAcks = 10
|
const numberOfAcks = 10
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue