pass MAX_STREAM_DATA frames directly to the stream

This commit is contained in:
Marten Seemann 2017-12-12 09:49:36 +07:00
parent 823098d6e2
commit 2d31440510
6 changed files with 38 additions and 30 deletions

View file

@ -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() {