split the flow controller in stream and connection flow controller

This commit is contained in:
Marten Seemann 2017-10-16 17:37:11 +07:00
parent 9e197184c1
commit c53a83535e
9 changed files with 414 additions and 287 deletions

View file

@ -25,7 +25,6 @@ var _ = Describe("Flow Control Manager", func() {
It("creates a connection level flow controller", func() {
Expect(fcm.streamFlowController).To(BeEmpty())
Expect(fcm.connFlowController.ContributesToConnection()).To(BeFalse())
Expect(fcm.connFlowController.sendWindow).To(BeZero())
Expect(fcm.connFlowController.maxReceiveWindowIncrement).To(Equal(protocol.ByteCount(0x4000)))
})