mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
pass the stream data, not the STREAM frame, to the streamFrameSorter
This commit is contained in:
parent
dbada7ad02
commit
8dc4b2d564
3 changed files with 63 additions and 251 deletions
|
@ -209,7 +209,7 @@ func (s *receiveStream) handleStreamFrame(frame *wire.StreamFrame) error {
|
|||
|
||||
s.mutex.Lock()
|
||||
defer s.mutex.Unlock()
|
||||
if err := s.frameQueue.Push(frame); err != nil && err != errDuplicateStreamData {
|
||||
if err := s.frameQueue.Push(frame.Data, frame.Offset, frame.FinBit); err != nil && err != errDuplicateStreamData {
|
||||
return err
|
||||
}
|
||||
s.signalRead()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue