ackhandler: fix resetting of packet.isPathProbePacket (#5310)

This commit is contained in:
Marten Seemann
2025-08-28 16:18:49 +08:00
committed by GitHub
parent 7f98a8b7ca
commit cead8cfbd6

View File

@@ -44,6 +44,7 @@ func getPacket() *packet {
p.includedInBytesInFlight = false p.includedInBytesInFlight = false
p.declaredLost = false p.declaredLost = false
p.skippedPacket = false p.skippedPacket = false
p.isPathProbePacket = false
return p return p
} }