mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
reduce calls to framer.getFCAllowance
This commit is contained in:
parent
58ec83c4ba
commit
38098954f4
1 changed files with 6 additions and 4 deletions
|
@ -145,11 +145,13 @@ func (f *streamFramer) maybePopNormalFrame(maxBytes protocol.ByteCount) (*frames
|
|||
}
|
||||
maxLen := maxBytes - frameHeaderBytes
|
||||
|
||||
fcAllowance, err := f.getFCAllowanceForStream(s)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
if s.lenOfDataForWriting() != 0 {
|
||||
fcAllowance, err := f.getFCAllowanceForStream(s)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
maxLen = utils.MinByteCount(maxLen, fcAllowance)
|
||||
}
|
||||
maxLen = utils.MinByteCount(maxLen, fcAllowance)
|
||||
|
||||
if maxLen == 0 {
|
||||
continue
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue