mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
simplify x = x <op> ...
to x <op>= ...
This commit is contained in:
parent
91b0f15046
commit
8ff3bf8ca6
2 changed files with 2 additions and 2 deletions
|
@ -633,7 +633,7 @@ func (h *sentPacketHandler) computeRTOTimeout() time.Duration {
|
||||||
}
|
}
|
||||||
rto = utils.MaxDuration(rto, minRTOTimeout)
|
rto = utils.MaxDuration(rto, minRTOTimeout)
|
||||||
// Exponential backoff
|
// Exponential backoff
|
||||||
rto = rto << h.rtoCount
|
rto <<= h.rtoCount
|
||||||
return utils.MinDuration(rto, maxRTOTimeout)
|
return utils.MinDuration(rto, maxRTOTimeout)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -193,7 +193,7 @@ func (c *cubicSender) OnPacketLost(
|
||||||
if c.congestionWindow >= 2*c.initialCongestionWindow {
|
if c.congestionWindow >= 2*c.initialCongestionWindow {
|
||||||
c.minSlowStartExitWindow = c.congestionWindow / 2
|
c.minSlowStartExitWindow = c.congestionWindow / 2
|
||||||
}
|
}
|
||||||
c.congestionWindow = c.congestionWindow - protocol.DefaultTCPMSS
|
c.congestionWindow -= protocol.DefaultTCPMSS
|
||||||
} else if c.reno {
|
} else if c.reno {
|
||||||
c.congestionWindow = protocol.ByteCount(float32(c.congestionWindow) * c.RenoBeta())
|
c.congestionWindow = protocol.ByteCount(float32(c.congestionWindow) * c.RenoBeta())
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue