optimize memory layout of ackhandler.Packet (#3844)

Before: 88 bytes. After: 80 bytes.
This commit is contained in:
Marten Seemann 2023-05-19 10:03:24 +03:00 committed by GitHub
parent 2ff71510a9
commit cf267ff7d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.