never increase the flow control limit for the crypto stream

This commit is contained in:
Marten Seemann 2018-09-18 21:40:42 -04:00
parent f78c0035b9
commit 8bd6168511
5 changed files with 9 additions and 28 deletions

View file

@ -164,7 +164,9 @@ func (s *receiveStream) readImpl(p []byte) (bool /*stream completed */, int, err
s.flowController.AddBytesRead(protocol.ByteCount(m))
}
// increase the flow control window, if necessary
s.flowController.MaybeQueueWindowUpdate()
if s.streamID != s.version.CryptoStreamID() {
s.flowController.MaybeQueueWindowUpdate()
}
if s.readPosInFrame >= len(s.currentFrame) && s.currentFrameIsLast {
s.finRead = true