mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +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,
|
||||
congestionWindow: initialCongestionWindow,
|
||||
minCongestionWindow: minCongestionWindow,
|
||||
slowStartThreshold: initialMaxCongestionWindow,
|
||||
slowStartThreshold: protocol.MaxByteCount,
|
||||
maxCongestionWindow: initialMaxCongestionWindow,
|
||||
cubic: NewCubic(clock),
|
||||
clock: clock,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue