use the STREAM frame buffer for receiving data

This commit is contained in:
Marten Seemann 2019-09-04 16:51:58 +07:00
parent 5ea33cd31e
commit ba1bcf6e0c
4 changed files with 394 additions and 221 deletions

View file

@ -80,11 +80,11 @@ func (s *cryptoStreamImpl) HandleCryptoFrame(f *wire.CryptoFrame) error {
return nil
}
s.highestOffset = utils.MaxByteCount(s.highestOffset, highestOffset)
if err := s.queue.Push(f.Data, f.Offset); err != nil {
if err := s.queue.Push(f.Data, f.Offset, nil); err != nil {
return err
}
for {
_, data := s.queue.Pop()
_, data, _ := s.queue.Pop()
if data == nil {
return nil
}