mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
make CancelWrite a no-op when called after closing the stream
This commit is contained in:
parent
415f79f892
commit
3808191679
3 changed files with 11 additions and 18 deletions
|
@ -254,12 +254,9 @@ func (s *sendStream) CancelWrite(errorCode protocol.ApplicationErrorCode) error
|
|||
|
||||
// must be called after locking the mutex
|
||||
func (s *sendStream) cancelWriteImpl(errorCode protocol.ApplicationErrorCode, writeErr error) (bool /*completed */, error) {
|
||||
if s.canceledWrite {
|
||||
if s.canceledWrite || s.finishedWriting {
|
||||
return false, nil
|
||||
}
|
||||
if s.finishedWriting {
|
||||
return false, fmt.Errorf("CancelWrite for closed stream %d", s.streamID)
|
||||
}
|
||||
s.canceledWrite = true
|
||||
s.cancelWriteErr = writeErr
|
||||
s.signalWrite()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue