mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
never increase the flow control limit for the crypto stream
This commit is contained in:
parent
f78c0035b9
commit
8bd6168511
5 changed files with 9 additions and 28 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue