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

Core concepts for QPACK #1357

Merged
merged 4 commits into from
May 25, 2018
Merged
Changes from 1 commit
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
18 changes: 9 additions & 9 deletions draft-ietf-quic-qpack.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ is larger than the maximum size; an attempt to add an entry larger than the
maximum size causes the table to be emptied of all existing entries and results
in an empty table.

A new entry can reference the name of an entry in the dynamic table that will be
evicted when adding this new entry into the dynamic table. Implementations are
A new entry can reference an entry in the dynamic table that will be evicted
when adding this new entry into the dynamic table. Implementations are
cautioned to avoid deleting the referenced name if the referenced entry is
evicted from the dynamic table prior to inserting the new entry.

Expand Down Expand Up @@ -145,15 +145,15 @@ on the context of the reference.

On the control stream, a relative index of "0" always refers to the most
recently inserted value in the dynamic table. Note that this means the
entry referenced by a given relative index can change while interpreting
a HEADERS frame as new entries are inserted.
entry referenced by a given relative index will change while interpreting
instructions on the encoder stream.

~~~~~ drawing
+---+---------------+-------+
| n | ... | d + 1 | Absolute Index
+ - +---------------+ - +
| 0 | ... | n-d-1 | Relative Index
+---+---------------+-------+
+---+---------------+-----------+
| n | ... | d + 1 | Absolute Index
+ - +---------------+ - - - - - +
| 0 | ... | n - d - 1 | Relative Index
+---+---------------+-----------+
^ |
| V
Insertion Point Dropping Point
Expand Down