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

Modify codepoints on decoder and request/push streams for consistency #1472

Merged
merged 2 commits into from Jun 26, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions draft-ietf-quic-qpack.md
Expand Up @@ -524,7 +524,7 @@ server's header blocks and table updates.

### Table State Synchronize

The Table State Synchronize instruction begins with the '01' two-bit pattern.
The Table State Synchronize instruction begins with the '00' two-bit pattern.
The instruction specifies the total number of dynamic table inserts and
duplications since the last Table State Synchronize or Header Acknowledgement
that increased the Largest Known Received dynamic table entry. This is encoded
Expand All @@ -535,7 +535,7 @@ entries might cause a stream to become blocked, as described in
~~~~~~~~~~ drawing
0 1 2 3 4 5 6 7
+---+---+---+---+---+---+---+---+
| 0 | 1 | Insert Count (6+) |
| 0 | 0 | Insert Count (6+) |
+---+---+-----------------------+
~~~~~~~~~~
{:#fig-size-sync title="Table State Synchronize"}
Expand Down Expand Up @@ -592,14 +592,14 @@ table on that stream are no longer outstanding.
An encoder cannot infer from this instruction that any updates to the dynamic
table have been received.

The instruction begins with the '00' two-bit pattern. The instruction includes
The instruction begins with the '01' two-bit pattern. The instruction includes
the stream ID of the affected stream - a request or push stream - encoded as a
6-bit prefix integer.

~~~~~~~~~~ drawing
0 1 2 3 4 5 6 7
+---+---+---+---+---+---+---+---+
| 0 | 0 | Stream ID (6+) |
| 0 | 1 | Stream ID (6+) |
+---+---+-----------------------+
~~~~~~~~~~
{:#fig-stream-cancel title="Stream Cancellation"}
Expand Down