mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
add a function to distinguish between long and short header packets (#3498)
This commit is contained in:
parent
bebff462c8
commit
80fd1b57c8
7 changed files with 21 additions and 11 deletions
|
@ -56,7 +56,7 @@ var _ = Describe("Version Negotiation Packets", func() {
|
|||
destConnID := protocol.ConnectionID{1, 2, 3, 4, 5, 6, 7, 8}
|
||||
versions := []protocol.VersionNumber{1001, 1003}
|
||||
data := ComposeVersionNegotiation(destConnID, srcConnID, versions)
|
||||
Expect(data[0] & 0x80).ToNot(BeZero())
|
||||
Expect(IsLongHeaderPacket(data[0])).To(BeTrue())
|
||||
hdr, supportedVersions, err := ParseVersionNegotiationPacket(bytes.NewReader(data))
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(hdr.DestConnectionID).To(Equal(destConnID))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue