move overflow check in MAX_STREAMS frame to frame parser

This commit is contained in:
Marten Seemann 2019-11-08 11:44:56 +07:00
parent 9f5df74bd1
commit 1e7c7842b9
4 changed files with 32 additions and 10 deletions

View file

@ -381,13 +381,6 @@ 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,
MaxStreamNum: protocol.MaxStreamCount + 1,
})).To(MatchError(qerr.StreamLimitError))
})
})
Context("sending MAX_STREAMS frames", func() {