mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
fix pacing rate
The pacing rate needs to be calculated for the next packet to be sent, not for the next byte to be sent.
This commit is contained in:
parent
9693646bff
commit
2976a3ee19
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ func (c *cubicSender) TimeUntilSend(bytesInFlight protocol.ByteCount) time.Durat
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
delay := c.rttStats.SmoothedRTT() / time.Duration(2*c.GetCongestionWindow())
|
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
|
if !c.InSlowStart() { // adjust delay, such that it's 1.25*cwd/rtt
|
||||||
delay = delay * 8 / 5
|
delay = delay * 8 / 5
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue