mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
remove unused perspective from header parsing
This commit is contained in:
parent
8a0fa1f8c6
commit
902853784b
8 changed files with 24 additions and 34 deletions
|
@ -19,7 +19,7 @@ var _ = Describe("Version Negotiation Packets", func() {
|
|||
b := bytes.NewReader(data)
|
||||
iHdr, err := ParseInvariantHeader(b, 4)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
hdr, err := iHdr.Parse(b, protocol.PerspectiveServer, versionIETFFrames)
|
||||
hdr, err := iHdr.Parse(b, versionIETFFrames)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(hdr.IsVersionNegotiation).To(BeTrue())
|
||||
Expect(hdr.DestConnectionID).To(Equal(destConnID))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue