mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
identify version negotiation packets without parsing the header
This commit is contained in:
parent
14426dfa12
commit
df34e4496e
5 changed files with 35 additions and 12 deletions
|
@ -239,8 +239,8 @@ var _ = Describe("Server", func() {
|
|||
var write mockPacketConnWrite
|
||||
Eventually(conn.dataWritten).Should(Receive(&write))
|
||||
Expect(write.to.String()).To(Equal("127.0.0.1:1337"))
|
||||
Expect(wire.IsVersionNegotiationPacket(write.data)).To(BeTrue())
|
||||
hdr := parseHeader(write.data)
|
||||
Expect(hdr.IsVersionNegotiation()).To(BeTrue())
|
||||
Expect(hdr.DestConnectionID).To(Equal(srcConnID))
|
||||
Expect(hdr.SrcConnectionID).To(Equal(destConnID))
|
||||
Expect(hdr.SupportedVersions).ToNot(ContainElement(protocol.VersionNumber(0x42)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue