implement a function to parse the version number of a Long Header packet

This commit is contained in:
Marten Seemann 2022-08-28 13:12:16 +03:00
parent ec9c824d98
commit d7097d74f0
2 changed files with 27 additions and 0 deletions

View file

@ -40,6 +40,15 @@ func IsLongHeaderPacket(firstByte byte) bool {
return firstByte&0x80 > 0
}
// ParseVersion parses the QUIC version.
// It should only be called for Long Header packets (Short Header packets don't contain a version number).
func ParseVersion(data []byte) (protocol.VersionNumber, error) {
if len(data) < 5 {
return 0, io.EOF
}
return protocol.VersionNumber(binary.BigEndian.Uint32(data[1:5])), nil
}
// IsVersionNegotiationPacket says if this is a version negotiation packet
func IsVersionNegotiationPacket(b []byte) bool {
if len(b) < 5 {