mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
set the offset in BLOCKED and STREAM_BLOCKED frames
This commit is contained in:
parent
69998c19cb
commit
00edfb7461
12 changed files with 51 additions and 33 deletions
|
@ -54,7 +54,9 @@ var _ = Describe("Base Flow controller", func() {
|
|||
controller.UpdateSendWindow(100)
|
||||
Expect(controller.IsBlocked()).To(BeFalse())
|
||||
controller.AddBytesSent(100)
|
||||
Expect(controller.IsBlocked()).To(BeTrue())
|
||||
blocked, offset := controller.IsBlocked()
|
||||
Expect(blocked).To(BeTrue())
|
||||
Expect(offset).To(Equal(protocol.ByteCount(100)))
|
||||
})
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue