fix stream limit increase in the case of many open streams

This commit is contained in:
Marten Seemann 2018-11-08 15:09:11 +07:00
parent 768004c4bc
commit e7b6d6af00
3 changed files with 6 additions and 6 deletions

View file

@ -106,8 +106,8 @@ func (m *incomingItemsMap) DeleteStream(id protocol.StreamID) error {
}
delete(m.streams, id)
// queue a MAX_STREAM_ID frame, giving the peer the option to open a new stream
if numNewStreams := m.maxNumStreams - len(m.streams) - 1; numNewStreams > 0 {
m.maxStream = m.nextStreamToOpen + protocol.StreamID(numNewStreams*4)
if numNewStreams := m.maxNumStreams - len(m.streams); numNewStreams > 0 {
m.maxStream = m.nextStreamToOpen + protocol.StreamID((numNewStreams-1)*4)
m.queueMaxStreamID(&wire.MaxStreamIDFrame{StreamID: m.maxStream})
}
return nil