mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
move calculation of RTO delay to the sent packet handler
This commit is contained in:
parent
ef286afa3c
commit
2b9b949855
6 changed files with 8 additions and 52 deletions
|
@ -292,11 +292,3 @@ func (c *cubicSender) OnConnectionMigration() {
|
|||
func (c *cubicSender) SetSlowStartLargeReduction(enabled bool) {
|
||||
c.slowStartLargeReduction = enabled
|
||||
}
|
||||
|
||||
// RetransmissionDelay gives the time to retransmission
|
||||
func (c *cubicSender) RetransmissionDelay() time.Duration {
|
||||
if c.rttStats.SmoothedRTT() == 0 {
|
||||
return 0
|
||||
}
|
||||
return c.rttStats.SmoothedRTT() + c.rttStats.MeanDeviation()*4
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue