mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
remove unnecessary flow control manager call
This commit is contained in:
parent
751150fd53
commit
638f6ae5e5
1 changed files with 3 additions and 2 deletions
|
@ -89,8 +89,9 @@ func (f *streamFramer) maybePopNormalFrames(maxBytes protocol.ByteCount) (res []
|
||||||
}
|
}
|
||||||
maxLen := maxBytes - currentLen - frameHeaderBytes
|
maxLen := maxBytes - currentLen - frameHeaderBytes
|
||||||
|
|
||||||
|
var sendWindowSize protocol.ByteCount
|
||||||
if s.lenOfDataForWriting() != 0 {
|
if s.lenOfDataForWriting() != 0 {
|
||||||
sendWindowSize, _ := f.flowControlManager.SendWindowSize(s.streamID)
|
sendWindowSize, _ = f.flowControlManager.SendWindowSize(s.streamID)
|
||||||
maxLen = utils.MinByteCount(maxLen, sendWindowSize)
|
maxLen = utils.MinByteCount(maxLen, sendWindowSize)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -118,7 +119,7 @@ func (f *streamFramer) maybePopNormalFrames(maxBytes protocol.ByteCount) (res []
|
||||||
if f.flowControlManager.RemainingConnectionWindowSize() == 0 {
|
if f.flowControlManager.RemainingConnectionWindowSize() == 0 {
|
||||||
// We are now connection-level FC blocked
|
// We are now connection-level FC blocked
|
||||||
f.blockedFrameQueue = append(f.blockedFrameQueue, &frames.BlockedFrame{StreamID: 0})
|
f.blockedFrameQueue = append(f.blockedFrameQueue, &frames.BlockedFrame{StreamID: 0})
|
||||||
} else if individualWindowSize, _ := f.flowControlManager.SendWindowSize(s.streamID); individualWindowSize == 0 {
|
} else if sendWindowSize-frame.DataLen() == 0 {
|
||||||
// We are now stream-level FC blocked
|
// We are now stream-level FC blocked
|
||||||
f.blockedFrameQueue = append(f.blockedFrameQueue, &frames.BlockedFrame{StreamID: s.StreamID()})
|
f.blockedFrameQueue = append(f.blockedFrameQueue, &frames.BlockedFrame{StreamID: s.StreamID()})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue