mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
copy error code from the STOP_SENDING frame to the RESET_STREAM frame
This commit is contained in:
parent
f1d14ecdea
commit
2836442a65
3 changed files with 3 additions and 5 deletions
|
@ -296,7 +296,7 @@ func (s *sendStream) handleStopSendingFrameImpl(frame *wire.StopSendingFrame) bo
|
|||
errorCode: frame.ErrorCode,
|
||||
error: fmt.Errorf("Stream %d was reset with error code %d", s.streamID, frame.ErrorCode),
|
||||
}
|
||||
return s.cancelWriteImpl(errorCodeStopping, writeErr)
|
||||
return s.cancelWriteImpl(frame.ErrorCode, writeErr)
|
||||
}
|
||||
|
||||
func (s *sendStream) Context() context.Context {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue