identify version negotiation packets without parsing the header

This commit is contained in:
Marten Seemann 2019-02-04 16:20:50 +08:00
parent 14426dfa12
commit df34e4496e
5 changed files with 35 additions and 12 deletions

View file

@ -60,10 +60,11 @@ var _ = Describe("Client", func() {
Expect(err).ToNot(HaveOccurred())
hdr, _, _, err := wire.ParsePacket(data, 0)
Expect(err).ToNot(HaveOccurred())
Expect(hdr.IsVersionNegotiation()).To(BeTrue())
Expect(wire.IsVersionNegotiationPacket(data)).To(BeTrue())
return &receivedPacket{
rcvTime: time.Now(),
hdr: hdr,
data: data,
}
}