mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
remove stream from BlockManager when a WindowUpdate increases its offset
fixes #130
This commit is contained in:
parent
7f907a17c2
commit
d571c0bfd5
7 changed files with 91 additions and 20 deletions
|
@ -352,6 +352,20 @@ var _ = Describe("Stream", func() {
|
|||
Expect(err).ToNot(HaveOccurred())
|
||||
})
|
||||
|
||||
It("returns true when the flow control window was updated", func() {
|
||||
updated := str.flowController.UpdateSendWindow(4)
|
||||
Expect(updated).To(BeTrue())
|
||||
updated = str.UpdateSendFlowControlWindow(5)
|
||||
Expect(updated).To(BeTrue())
|
||||
})
|
||||
|
||||
It("returns false when the flow control window was not updated", func() {
|
||||
updated := str.flowController.UpdateSendWindow(4)
|
||||
Expect(updated).To(BeTrue())
|
||||
updated = str.UpdateSendFlowControlWindow(3)
|
||||
Expect(updated).To(BeFalse())
|
||||
})
|
||||
|
||||
It("waits for a stream flow control window update", func() {
|
||||
var b bool
|
||||
updated := str.flowController.UpdateSendWindow(1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue