mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
drop support for draft-29 (#3903)
This commit is contained in:
parent
da298d09e1
commit
21388c86bb
20 changed files with 65 additions and 189 deletions
|
@ -108,7 +108,7 @@ func Is0RTTPacket(b []byte) bool {
|
|||
version := protocol.VersionNumber(binary.BigEndian.Uint32(b[1:5]))
|
||||
//nolint:exhaustive // We only need to test QUIC versions that we support.
|
||||
switch version {
|
||||
case protocol.Version1, protocol.VersionDraft29:
|
||||
case protocol.Version1:
|
||||
return b[0]>>4&0b11 == 0b01
|
||||
case protocol.Version2:
|
||||
return b[0]>>4&0b11 == 0b10
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue