mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
wire: always set the QUIC bit for Version Negotiation packets (#3991)
* wire: always set the QUIC bit for Version Negotiation packets * Update internal/wire/version_negotiation_test.go
This commit is contained in:
parent
f689a5d023
commit
ced65c0ddc
2 changed files with 5 additions and 1 deletions
|
@ -64,6 +64,7 @@ var _ = Describe("Version Negotiation Packets", func() {
|
|||
versions := []protocol.VersionNumber{1001, 1003}
|
||||
data := ComposeVersionNegotiation(destConnID, srcConnID, versions)
|
||||
Expect(IsLongHeaderPacket(data[0])).To(BeTrue())
|
||||
Expect(data[0] & 0x40).ToNot(BeZero())
|
||||
v, err := ParseVersion(data)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(v).To(BeZero())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue