mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
use the ack_delay_exponent sent in the transport parameters
This commit is contained in:
parent
155ebd18a2
commit
cebb4342ec
5 changed files with 68 additions and 29 deletions
|
@ -822,7 +822,7 @@ var _ = Describe("Packet packer", func() {
|
|||
Expect(firstPayloadByte).To(Equal(byte(0)))
|
||||
// ... followed by the stream frame
|
||||
frameParser := wire.NewFrameParser(packer.version)
|
||||
frame, err := frameParser.ParseNext(r)
|
||||
frame, err := frameParser.ParseNext(r, protocol.Encryption1RTT)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(frame).To(Equal(f))
|
||||
Expect(r.Len()).To(BeZero())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue