mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
rename sendStream.handleMaxStreamDataFrame to updateSendWindow
This commit is contained in:
parent
3bce408c8d
commit
c27f5a55b3
7 changed files with 33 additions and 40 deletions
|
@ -652,10 +652,7 @@ var _ = Describe("Send Stream", func() {
|
|||
Context("handling MAX_STREAM_DATA frames", func() {
|
||||
It("informs the flow controller", func() {
|
||||
mockFC.EXPECT().UpdateSendWindow(protocol.ByteCount(0x1337))
|
||||
str.handleMaxStreamDataFrame(&wire.MaxStreamDataFrame{
|
||||
StreamID: streamID,
|
||||
MaximumStreamData: 0x1337,
|
||||
})
|
||||
str.updateSendWindow(0x1337)
|
||||
})
|
||||
|
||||
It("says when it has data for sending", func() {
|
||||
|
@ -670,10 +667,7 @@ var _ = Describe("Send Stream", func() {
|
|||
}()
|
||||
waitForWrite()
|
||||
mockSender.EXPECT().onHasStreamData(streamID)
|
||||
str.handleMaxStreamDataFrame(&wire.MaxStreamDataFrame{
|
||||
StreamID: streamID,
|
||||
MaximumStreamData: 42,
|
||||
})
|
||||
str.updateSendWindow(42)
|
||||
// make sure the Write go routine returns
|
||||
str.closeForShutdown(nil)
|
||||
Eventually(done).Should(BeClosed())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue