store stream data, not STREAM frames, in the streamFrameSorter

This commit is contained in:
Marten Seemann 2018-08-26 08:59:48 +07:00
parent ac59e284dd
commit dbada7ad02
5 changed files with 150 additions and 115 deletions

View file

@ -37,5 +37,5 @@ func newCryptoStream(sender streamSender, flowController flowcontrol.StreamFlowC
// It must not be called concurrently with any other stream methods, especially Read and Write.
func (s *cryptoStreamImpl) setReadOffset(offset protocol.ByteCount) {
s.receiveStream.readOffset = offset
s.receiveStream.frameQueue.readPosition = offset
s.receiveStream.frameQueue.readPos = offset
}