Merge pull request #2238 from lucas-clemente/fix-pto-logging

fix logging of the PTO packet number space
This commit is contained in:
Marten Seemann 2019-11-24 21:09:39 +07:00 committed by GitHub
commit 2f54d1638c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -453,10 +453,10 @@ func (h *sentPacketHandler) onVerifiedLossDetectionTimeout() error {
}
// PTO
_, encLevel = h.getEarliestSentTimeAndSpace()
if h.logger.Debug() {
h.logger.Debugf("Loss detection alarm for %s fired in PTO mode. PTO count: %d", encLevel, h.ptoCount)
}
_, encLevel = h.getEarliestSentTimeAndSpace()
h.ptoCount++
h.numProbesToSend += 2
switch encLevel {