cancel the loss detection timer when amplification limited

This commit is contained in:
Marten Seemann 2021-03-29 09:32:00 +07:00
parent 6c0142cb4c
commit 3fab321ea7
2 changed files with 47 additions and 24 deletions

View file

@ -490,6 +490,16 @@ func (h *sentPacketHandler) setLossDetectionTimer() {
return
}
// Cancel the alarm if amplification limited.
if h.isAmplificationLimited() {
h.alarm = time.Time{}
h.logger.Debugf("Canceling loss detection timer. Amplification limited.")
if h.tracer != nil && !oldAlarm.IsZero() {
h.tracer.LossTimerCanceled()
}
return
}
// Cancel the alarm if no packets are outstanding
if !h.hasOutstandingPackets() && h.peerCompletedAddressValidation {
h.alarm = time.Time{}