mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
refactor frame parser to remove version parameter from constructor
This commit is contained in:
parent
582edae63d
commit
ef28f4667f
8 changed files with 76 additions and 77 deletions
|
@ -42,9 +42,9 @@ var _ = Describe("Streams Map (incoming)", func() {
|
|||
|
||||
// check that the frame can be serialized and deserialized
|
||||
checkFrameSerialization := func(f wire.Frame) {
|
||||
b, err := f.Append(nil, protocol.VersionTLS)
|
||||
b, err := f.Append(nil, protocol.Version1)
|
||||
ExpectWithOffset(1, err).ToNot(HaveOccurred())
|
||||
_, frame, err := wire.NewFrameParser(false, protocol.VersionTLS).ParseNext(b, protocol.Encryption1RTT)
|
||||
_, frame, err := wire.NewFrameParser(false).ParseNext(b, protocol.Encryption1RTT, protocol.Version1)
|
||||
ExpectWithOffset(1, err).ToNot(HaveOccurred())
|
||||
Expect(f).To(Equal(frame))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue