mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
embed the packetInfo in the receivedPacket struct
This avoid allocating the packetInfo struct when receiving a packet.
This commit is contained in:
parent
3b5950a1ce
commit
edaeed0107
10 changed files with 42 additions and 36 deletions
|
@ -70,7 +70,7 @@ type receivedPacket struct {
|
|||
|
||||
ecn protocol.ECN
|
||||
|
||||
info *packetInfo
|
||||
info packetInfo // only valid if the contained IP address is valid
|
||||
}
|
||||
|
||||
func (p *receivedPacket) Size() protocol.ByteCount { return protocol.ByteCount(len(p.data)) }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue