mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
rename the reordering threshold constant in the sent packet handler
This commit is contained in:
parent
9dc29effdf
commit
2c27cc0090
1 changed files with 3 additions and 3 deletions
|
@ -15,8 +15,8 @@ import (
|
|||
|
||||
const (
|
||||
// Maximum reordering in time space before time based loss detection considers a packet lost.
|
||||
// In fraction of an RTT.
|
||||
timeReorderingFraction = 1.0 / 8
|
||||
// Specified as an RTT multiplier.
|
||||
timeThreshold = 9.0 / 8
|
||||
// Timer granularity. The timer will not be set to a value smaller than granularity.
|
||||
granularity = time.Millisecond
|
||||
)
|
||||
|
@ -340,7 +340,7 @@ func (h *sentPacketHandler) detectLostPackets(
|
|||
pnSpace := h.getPacketNumberSpace(encLevel)
|
||||
|
||||
maxRTT := float64(utils.MaxDuration(h.rttStats.LatestRTT(), h.rttStats.SmoothedRTT()))
|
||||
lossDelay := time.Duration((1.0 + timeReorderingFraction) * maxRTT)
|
||||
lossDelay := time.Duration(timeThreshold * maxRTT)
|
||||
|
||||
var lostPackets []*Packet
|
||||
pnSpace.history.Iterate(func(packet *Packet) (bool, error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue