add a method to retrieve non-QUIC packets from the Transport (#3992)

This commit is contained in:
Marten Seemann 2023-08-19 15:19:17 +07:00 committed by GitHub
parent 6880f88089
commit fe3c4f271d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 195 additions and 4 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