mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
exit framer loop early if no space is left in packet
This commit is contained in:
parent
2970ee3ac5
commit
e8ef0de5b4
3 changed files with 10 additions and 5 deletions
|
@ -125,6 +125,11 @@ func (f *streamFramer) maybePopNormalFrames(maxBytes protocol.ByteCount) (res []
|
|||
|
||||
res = append(res, frame)
|
||||
currentLen += frameHeaderBytes + frame.DataLen()
|
||||
|
||||
if currentLen == maxBytes {
|
||||
return false, nil
|
||||
}
|
||||
|
||||
frame = &frames.StreamFrame{DataLenPresent: true}
|
||||
return true, nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue