mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +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
|
maxLen := maxBytes - frameHeaderBytes
|
||||||
|
|
||||||
fcAllowance, err := f.getFCAllowanceForStream(s)
|
if s.lenOfDataForWriting() != 0 {
|
||||||
if err != nil {
|
fcAllowance, err := f.getFCAllowanceForStream(s)
|
||||||
return nil, err
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
maxLen = utils.MinByteCount(maxLen, fcAllowance)
|
||||||
}
|
}
|
||||||
maxLen = utils.MinByteCount(maxLen, fcAllowance)
|
|
||||||
|
|
||||||
if maxLen == 0 {
|
if maxLen == 0 {
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue