mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
avoid allocations when adding packets to the sent packet history
This commit is contained in:
parent
07412be8a0
commit
fd38fe4a9a
2 changed files with 18 additions and 18 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue