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

@ -214,9 +214,6 @@ func (m *streamsMap) getOrOpenSendStream(id protocol.StreamID) (sendStreamI, err
}
func (m *streamsMap) HandleMaxStreamsFrame(f *wire.MaxStreamsFrame) error {
if f.MaxStreamNum > protocol.MaxStreamCount {
return qerr.StreamLimitError
}
switch f.Type {
case protocol.StreamTypeUni:
m.outgoingUniStreams.SetMaxStream(f.MaxStreamNum)