mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
store stream data, not STREAM frames, in the streamFrameSorter
This commit is contained in:
parent
ac59e284dd
commit
dbada7ad02
5 changed files with 150 additions and 115 deletions
|
@ -21,6 +21,6 @@ var _ = Describe("Crypto Stream", func() {
|
|||
It("sets the read offset", func() {
|
||||
str.setReadOffset(0x42)
|
||||
Expect(str.receiveStream.readOffset).To(Equal(protocol.ByteCount(0x42)))
|
||||
Expect(str.receiveStream.frameQueue.readPosition).To(Equal(protocol.ByteCount(0x42)))
|
||||
Expect(str.receiveStream.frameQueue.readPos).To(Equal(protocol.ByteCount(0x42)))
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue