mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
optimize memory layout of ackhandler.Packet (#3844)
Before: 88 bytes. After: 80 bytes.
This commit is contained in:
parent
2ff71510a9
commit
cf267ff7d7
1 changed files with 1 additions and 1 deletions
|
@ -9,12 +9,12 @@ import (
|
|||
|
||||
// A Packet is a packet
|
||||
type Packet struct {
|
||||
SendTime time.Time
|
||||
PacketNumber protocol.PacketNumber
|
||||
Frames []*Frame
|
||||
LargestAcked protocol.PacketNumber // InvalidPacketNumber if the packet doesn't contain an ACK
|
||||
Length protocol.ByteCount
|
||||
EncryptionLevel protocol.EncryptionLevel
|
||||
SendTime time.Time
|
||||
|
||||
IsPathMTUProbePacket bool // We don't report the loss of Path MTU probe packets to the congestion controller.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue