exit framer loop early if no space is left in packet

This commit is contained in:
Lucas Clemente 2016-09-16 21:32:57 +02:00
parent 2970ee3ac5
commit e8ef0de5b4
3 changed files with 10 additions and 5 deletions

View file

@ -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
}