only set the 0x80 bit to 1 for version negotiation packets

This commit is contained in:
Marten Seemann 2020-03-10 14:43:19 +07:00
parent ba4194153e
commit c720250b9b
2 changed files with 1 additions and 2 deletions

View file

@ -14,7 +14,6 @@ var _ = Describe("Version Negotiation Packets", func() {
data, err := ComposeVersionNegotiation(destConnID, srcConnID, versions)
Expect(err).ToNot(HaveOccurred())
Expect(data[0] & 0x80).ToNot(BeZero())
Expect(data[0] & 0x40).ToNot(BeZero())
hdr, _, rest, err := ParsePacket(data, 4)
Expect(err).ToNot(HaveOccurred())
Expect(hdr.DestConnectionID).To(Equal(destConnID))