mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
move overflow check in MAX_STREAMS frame to frame parser
This commit is contained in:
parent
9f5df74bd1
commit
1e7c7842b9
4 changed files with 32 additions and 10 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue