Update quic-go

This commit is contained in:
Frank Denis 2023-08-25 16:15:45 +02:00
parent d48c811ea9
commit c86e9a90cc
33 changed files with 419 additions and 222 deletions

View file

@ -74,6 +74,10 @@ func parseArbitraryLenConnectionIDs(r *bytes.Reader) (dest, src protocol.Arbitra
return destConnID, srcConnID, nil
}
func IsPotentialQUICPacket(firstByte byte) bool {
return firstByte&0x40 > 0
}
// IsLongHeaderPacket says if this is a Long Header packet
func IsLongHeaderPacket(firstByte byte) bool {
return firstByte&0x80 > 0