pass the stream data, not the STREAM frame, to the streamFrameSorter

This commit is contained in:
Marten Seemann 2018-08-26 09:26:59 +07:00
parent dbada7ad02
commit 8dc4b2d564
3 changed files with 63 additions and 251 deletions

View file

@ -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()