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:
Marten Seemann 2023-08-21 09:55:57 +07:00 committed by GitHub
parent f689a5d023
commit ced65c0ddc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -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())