Merge pull request #1587 from lucas-clemente/fix-stream-allowance

fix stream limit increase in the case of many open streams
This commit is contained in:
Marten Seemann 2018-11-08 17:57:28 +07:00 committed by GitHub
commit 4d3bafd44d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View file

@ -108,8 +108,8 @@ func (m *incomingBidiStreamsMap) 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

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

View file

@ -108,8 +108,8 @@ func (m *incomingUniStreamsMap) 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