diff --git a/internal/ackhandler/sent_packet_handler.go b/internal/ackhandler/sent_packet_handler.go index 6c138e45..7c3cf892 100644 --- a/internal/ackhandler/sent_packet_handler.go +++ b/internal/ackhandler/sent_packet_handler.go @@ -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) } } diff --git a/internal/ackhandler/sent_packet_handler_test.go b/internal/ackhandler/sent_packet_handler_test.go index 15a4eabd..de1335ed 100644 --- a/internal/ackhandler/sent_packet_handler_test.go +++ b/internal/ackhandler/sent_packet_handler_test.go @@ -1205,13 +1205,19 @@ func TestSentPacketHandlerPathProbeAckAndLoss(t *testing.T) { t1 := now now = now.Add(100 * time.Millisecond) _ = sendPacket(now, true) + t2 := now now = now.Add(100 * time.Millisecond) pn3 := sendPacket(now, true) now = now.Add(100 * time.Millisecond) require.Equal(t, t1.Add(pathProbePacketLossTimeout), sph.GetLossDetectionTimeout()) + require.NoError(t, sph.OnLossDetectionTimeout(sph.GetLossDetectionTimeout())) + require.Equal(t, []protocol.PacketNumber{pn1}, packets.Lost) + packets.Lost = packets.Lost[:0] + + // receive a delayed ACK for the path probe packet _, err := sph.ReceivedAck( - &wire.AckFrame{AckRanges: ackRanges(pn3)}, + &wire.AckFrame{AckRanges: ackRanges(pn1, pn3)}, protocol.Encryption1RTT, now, ) @@ -1219,8 +1225,5 @@ func TestSentPacketHandlerPathProbeAckAndLoss(t *testing.T) { require.Equal(t, []protocol.PacketNumber{pn3}, packets.Acked) require.Empty(t, packets.Lost) - require.Equal(t, t1.Add(pathProbePacketLossTimeout), sph.GetLossDetectionTimeout()) - - require.NoError(t, sph.OnLossDetectionTimeout(sph.GetLossDetectionTimeout())) - require.Equal(t, []protocol.PacketNumber{pn1}, packets.Lost) + require.Equal(t, t2.Add(pathProbePacketLossTimeout), sph.GetLossDetectionTimeout()) }