Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

STREAM_ID_NEEDED frame #455

Merged
merged 1 commit into from
May 2, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions draft-ietf-quic-transport.md
Original file line number Diff line number Diff line change
Expand Up @@ -791,6 +791,7 @@ explained in more detail as they are referenced later in the document.
| 0x07 | PING | {{frame-ping}} |
| 0x08 | BLOCKED | {{frame-blocked}} |
| 0x09 | STREAM_BLOCKED | {{frame-stream-blocked}} |
| 0x0a | STREAM_ID_NEEDED | {{frame-stream-id-needed}} |
| 0xa0 - 0x7f | ACK | {{frame-ack}} |
| 0xc0 - 0xff | STREAM | {{frame-stream}} |
{: #frame-types title="Frame Types"}
Expand Down Expand Up @@ -1786,6 +1787,14 @@ Stream ID:
: A 32-bit unsigned number indicating the stream which is flow control blocked.


## STREAM_ID_NEEDED Frame {#frame-stream-id-needed}

A sender sends a STREAM_ID_NEEDED frame (type=0x0a) when it wishes to open a
stream, but is unable to due to the maximum stream ID limit.

The STREAM_ID_NEEDED frame does not contain a payload.


## RST_STREAM Frame {#frame-rst-stream}

An endpoint may use a RST_STREAM frame (type=0x01) to abruptly terminate a
Expand Down