diff --git a/send_stream.go b/send_stream.go index 46f24c4b..3def448e 100644 --- a/send_stream.go +++ b/send_stream.go @@ -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 { diff --git a/send_stream_test.go b/send_stream_test.go index fdea194e..efcd648c 100644 --- a/send_stream_test.go +++ b/send_stream_test.go @@ -609,10 +609,10 @@ var _ = Describe("Send Stream", func() { }) Context("receiving STOP_SENDING frames", func() { - It("queues a RESET_STREAM frames with error code Stopping", func() { + It("queues a RESET_STREAM frames, and copies the error code from the STOP_SENDING frame", func() { mockSender.EXPECT().queueControlFrame(&wire.ResetStreamFrame{ StreamID: streamID, - ErrorCode: errorCodeStopping, + ErrorCode: 101, }) mockSender.EXPECT().onStreamCompleted(streamID) str.handleStopSendingFrame(&wire.StopSendingFrame{ diff --git a/stream.go b/stream.go index dfd0cc6a..d9a6dc41 100644 --- a/stream.go +++ b/stream.go @@ -10,8 +10,6 @@ import ( "github.com/lucas-clemente/quic-go/internal/wire" ) -const errorCodeStopping protocol.ApplicationErrorCode = 0 - // The streamSender is notified by the stream about various events. type streamSender interface { queueControlFrame(wire.Frame)