mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
improve memory alignment of frequently used structs
This commit is contained in:
parent
f15a82d3fd
commit
807dd67927
4 changed files with 12 additions and 10 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue