mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
use the full pacing rate, also when not in slow start
This commit is contained in:
parent
2ca932d765
commit
6be9c7bfcd
1 changed files with 1 additions and 5 deletions
|
@ -89,11 +89,7 @@ func (c *cubicSender) TimeUntilSend(bytesInFlight protocol.ByteCount) time.Durat
|
|||
return 0
|
||||
}
|
||||
}
|
||||
delay := c.rttStats.SmoothedRTT() * time.Duration(protocol.DefaultTCPMSS) / time.Duration(2*c.GetCongestionWindow())
|
||||
if !c.InSlowStart() { // adjust delay, such that it's 1.25*cwd/rtt
|
||||
delay = delay * 8 / 5
|
||||
}
|
||||
return delay
|
||||
return c.rttStats.SmoothedRTT() * time.Duration(protocol.DefaultTCPMSS) / time.Duration(2*c.GetCongestionWindow())
|
||||
}
|
||||
|
||||
func (c *cubicSender) OnPacketSent(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue