use a sync.Pool to avoid allocations of ackhandler.Packet

This commit is contained in:
Marten Seemann 2022-08-27 18:29:57 +03:00
parent fd38fe4a9a
commit a3b91cf683
4 changed files with 63 additions and 29 deletions

View file

@ -334,7 +334,11 @@ func (h *sentPacketHandler) ReceivedAck(ack *wire.AckFrame, encLevel protocol.En
acked1RTTPacket = true
}
h.removeFromBytesInFlight(p)
putPacket(p)
}
// After this point, we must not use ackedPackets any longer!
// We've already returned the buffers.
ackedPackets = nil //nolint:ineffassign // This is just to be on the safe side.
// Reset the pto_count unless the client is unsure if the server has validated the client's address.
if h.peerCompletedAddressValidation {