mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
rename the RST_STREAM frame to RESET_STREAM frame
This commit is contained in:
parent
7087a16c7f
commit
022189dfda
17 changed files with 75 additions and 77 deletions
|
@ -490,8 +490,8 @@ var _ = Describe("Send Stream", func() {
|
|||
|
||||
Context("stream cancelations", func() {
|
||||
Context("canceling writing", func() {
|
||||
It("queues a RST_STREAM frame", func() {
|
||||
mockSender.EXPECT().queueControlFrame(&wire.RstStreamFrame{
|
||||
It("queues a RESET_STREAM frame", func() {
|
||||
mockSender.EXPECT().queueControlFrame(&wire.ResetStreamFrame{
|
||||
StreamID: streamID,
|
||||
ByteOffset: 1234,
|
||||
ErrorCode: 9876,
|
||||
|
@ -562,8 +562,8 @@ var _ = Describe("Send Stream", func() {
|
|||
})
|
||||
|
||||
Context("receiving STOP_SENDING frames", func() {
|
||||
It("queues a RST_STREAM frames with error code Stopping", func() {
|
||||
mockSender.EXPECT().queueControlFrame(&wire.RstStreamFrame{
|
||||
It("queues a RESET_STREAM frames with error code Stopping", func() {
|
||||
mockSender.EXPECT().queueControlFrame(&wire.ResetStreamFrame{
|
||||
StreamID: streamID,
|
||||
ErrorCode: errorCodeStopping,
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue