mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
remove the error return value from Stream.CancelRead
This commit is contained in:
parent
3808191679
commit
ca939df44e
7 changed files with 22 additions and 27 deletions
|
@ -190,12 +190,12 @@ func (s *receiveStream) dequeueNextFrame() {
|
|||
s.readPosInFrame = 0
|
||||
}
|
||||
|
||||
func (s *receiveStream) CancelRead(errorCode protocol.ApplicationErrorCode) error {
|
||||
func (s *receiveStream) CancelRead(errorCode protocol.ApplicationErrorCode) {
|
||||
s.mutex.Lock()
|
||||
defer s.mutex.Unlock()
|
||||
|
||||
if s.finRead || s.canceledRead || s.resetRemotely {
|
||||
return nil
|
||||
return
|
||||
}
|
||||
if s.finalOffset != protocol.MaxByteCount { // final offset was already received
|
||||
s.streamCompleted()
|
||||
|
@ -207,7 +207,6 @@ func (s *receiveStream) CancelRead(errorCode protocol.ApplicationErrorCode) erro
|
|||
StreamID: s.streamID,
|
||||
ErrorCode: errorCode,
|
||||
})
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s *receiveStream) handleStreamFrame(frame *wire.StreamFrame) error {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue