mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +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
|
@ -220,9 +220,8 @@ var _ = Describe("Session", func() {
|
|||
}
|
||||
str := NewMockSendStreamI(mockCtrl)
|
||||
streamManager.EXPECT().GetOrOpenSendStream(protocol.StreamID(12345)).Return(str, nil)
|
||||
str.EXPECT().handleMaxStreamDataFrame(f)
|
||||
err := sess.handleMaxStreamDataFrame(f)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
str.EXPECT().updateSendWindow(protocol.ByteCount(0x1337))
|
||||
Expect(sess.handleMaxStreamDataFrame(f)).To(Succeed())
|
||||
})
|
||||
|
||||
It("updates the flow control window of the connection", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue