avoid allocations when adding packets to the sent packet history

This commit is contained in:
Marten Seemann 2022-08-27 18:22:46 +03:00
parent 07412be8a0
commit fd38fe4a9a
2 changed files with 18 additions and 18 deletions

View file

@ -38,7 +38,7 @@ var _ = Describe("SentPacketHandler", func() {
getPacket := func(pn protocol.PacketNumber, encLevel protocol.EncryptionLevel) *Packet {
if el, ok := handler.getPacketNumberSpace(encLevel).history.packetMap[pn]; ok {
return &el.Value
return el.Value
}
return nil
}