ackhandler: fix handling of lost path probes on loss timer (#4956)

This commit is contained in:
Marten Seemann
2025-02-14 15:29:42 +01:00
committed by GitHub
parent bf28da8346
commit 9f704c72cf
2 changed files with 9 additions and 5 deletions

View File

@@ -658,6 +658,7 @@ func (h *sentPacketHandler) detectLostPathProbes(now time.Time) {
for _, f := range p.Frames {
f.Handler.OnLost(f.Frame)
}
h.appDataPackets.history.Remove(p.PacketNumber)
h.appDataPackets.history.RemovePathProbe(p.PacketNumber)
}
}