mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
fix receive flow control windows diverging
This commit is contained in:
parent
0d8cd978a7
commit
8a9f5f9833
2 changed files with 3 additions and 2 deletions
|
@ -102,8 +102,8 @@ func (c *flowController) MaybeTriggerWindowUpdate() (bool, protocol.ByteCount) {
|
|||
diff := c.receiveFlowControlWindow - c.bytesRead
|
||||
// Chromium implements the same threshold
|
||||
if diff < (c.receiveFlowControlWindowIncrement / 2) {
|
||||
c.receiveFlowControlWindow += c.receiveFlowControlWindowIncrement
|
||||
return true, c.bytesRead + c.receiveFlowControlWindowIncrement
|
||||
c.receiveFlowControlWindow = c.bytesRead + c.receiveFlowControlWindowIncrement
|
||||
return true, c.receiveFlowControlWindow
|
||||
}
|
||||
return false, 0
|
||||
}
|
||||
|
|
|
@ -154,6 +154,7 @@ var _ = Describe("Flow controller", func() {
|
|||
updateNecessary, offset := controller.MaybeTriggerWindowUpdate()
|
||||
Expect(updateNecessary).To(BeTrue())
|
||||
Expect(offset).To(Equal(readPosition + receiveFlowControlWindowIncrement))
|
||||
Expect(controller.receiveFlowControlWindow).To(Equal(readPosition + receiveFlowControlWindowIncrement))
|
||||
})
|
||||
|
||||
It("triggers a window update when not necessary", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue