mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27: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
|
@ -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{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue