improve memory alignment of frequently used structs

This commit is contained in:
Marten Seemann 2019-09-13 13:37:41 +07:00
parent f15a82d3fd
commit 807dd67927
4 changed files with 12 additions and 10 deletions

View file

@ -46,19 +46,20 @@ var errUnsupportedVersion = errors.New("unsupported version")
// The Header is the version independent part of the header
type Header struct {
IsLongHeader bool
typeByte byte
Type protocol.PacketType
Version protocol.VersionNumber
SrcConnectionID protocol.ConnectionID
DestConnectionID protocol.ConnectionID
IsLongHeader bool
Type protocol.PacketType
Length protocol.ByteCount
Length protocol.ByteCount
Token []byte
SupportedVersions []protocol.VersionNumber // sent in a Version Negotiation Packet
OrigDestConnectionID protocol.ConnectionID // sent in the Retry packet
typeByte byte
parsedLen protocol.ByteCount // how many bytes were read while parsing this header
}