implement handling of MAX_STREAM_ID frames

This commit is contained in:
Marten Seemann 2018-02-04 18:28:52 +08:00
parent cd4bcda458
commit 46e20ce8c9
11 changed files with 350 additions and 53 deletions

View file

@ -546,4 +546,8 @@ var _ = Describe("Streams Map (for gQUIC)", func() {
})
m.UpdateLimits(&handshake.TransportParameters{StreamFlowControlWindow: 321})
})
It("doesn't accept MAX_STREAM_ID frames", func() {
Expect(m.HandleMaxStreamIDFrame(&wire.MaxStreamIDFrame{})).ToNot(Succeed())
})
})