mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
replace short fragments by longer fragments in the frame sorter
This commit is contained in:
parent
d1489e5045
commit
326ec9e16e
2 changed files with 10 additions and 11 deletions
|
@ -37,14 +37,11 @@ func (s *frameSorter) push(data []byte, offset protocol.ByteCount) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
var wasCut bool
|
||||
if oldData, ok := s.queue[offset]; ok {
|
||||
if len(data) <= len(oldData) {
|
||||
return errDuplicateStreamData
|
||||
}
|
||||
data = data[len(oldData):]
|
||||
offset += protocol.ByteCount(len(oldData))
|
||||
wasCut = true
|
||||
s.queue[offset] = data
|
||||
}
|
||||
|
||||
start := offset
|
||||
|
@ -66,6 +63,7 @@ func (s *frameSorter) push(data []byte, offset protocol.ByteCount) error {
|
|||
return errors.New("StreamFrameSorter BUG: no gap found")
|
||||
}
|
||||
|
||||
var wasCut bool
|
||||
if start < gap.Value.Start {
|
||||
add := gap.Value.Start - start
|
||||
offset += add
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue