mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
remove unused readOffset member variable in receiveStream
This commit is contained in:
parent
fa69438124
commit
652125367c
1 changed files with 0 additions and 2 deletions
|
@ -29,7 +29,6 @@ type receiveStream struct {
|
|||
sender streamSender
|
||||
|
||||
frameQueue *frameSorter
|
||||
readOffset protocol.ByteCount
|
||||
finalOffset protocol.ByteCount
|
||||
|
||||
currentFrame []byte
|
||||
|
@ -169,7 +168,6 @@ func (s *receiveStream) readImpl(p []byte) (bool /*stream completed */, int, err
|
|||
m := copy(p[bytesRead:], s.currentFrame[s.readPosInFrame:])
|
||||
s.readPosInFrame += m
|
||||
bytesRead += m
|
||||
s.readOffset += protocol.ByteCount(m)
|
||||
|
||||
s.mutex.Lock()
|
||||
// when a RESET_STREAM was received, the was already informed about the final byteOffset for this stream
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue