mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
pass MAX_STREAM_DATA frames directly to the stream
This commit is contained in:
parent
823098d6e2
commit
2d31440510
6 changed files with 38 additions and 30 deletions
|
@ -1085,7 +1085,10 @@ var _ = Describe("Stream", func() {
|
|||
|
||||
It("updates the flow control window", func() {
|
||||
mockFC.EXPECT().UpdateSendWindow(protocol.ByteCount(0x42))
|
||||
str.UpdateSendWindow(0x42)
|
||||
str.HandleMaxStreamDataFrame(&wire.MaxStreamDataFrame{
|
||||
StreamID: streamID,
|
||||
ByteOffset: 0x42,
|
||||
})
|
||||
})
|
||||
|
||||
It("gets a window update", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue