reject MAX_STREAMS frames with too large stream counts

This commit is contained in:
Marten Seemann 2019-03-29 09:33:28 +01:00
parent 358fce241a
commit 7b02b87026
3 changed files with 15 additions and 0 deletions

View file

@ -356,6 +356,13 @@ var _ = Describe("Streams Map", func() {
_, err = m.OpenUniStream()
expectTooManyStreamsError(err)
})
It("rejects MAX_STREAMS frames with too large values", func() {
Expect(m.HandleMaxStreamsFrame(&wire.MaxStreamsFrame{
Type: protocol.StreamTypeBidi,
MaxStreams: protocol.MaxStreamCount + 1,
})).To(MatchError(qerr.StreamLimitError))
})
})
Context("sending MAX_STREAMS frames", func() {