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

Specify the compression window sizes for zstd-d and br-d #2769

Merged
merged 3 commits into from
Apr 8, 2024
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
24 changes: 12 additions & 12 deletions draft-ietf-httpbis-compression-dictionary.md
Original file line number Diff line number Diff line change
Expand Up @@ -300,12 +300,12 @@ negotiating content encoding in HTTP.

This document introduces two new content encoding algorithms:

|------------------|----------------------------------------------------|
| Content-Encoding | Description |
|------------------|----------------------------------------------------|
| br-d | Brotli using an external compression dictionary |
| zstd-d | Zstandard using an external compression dictionary |
|------------------|----------------------------------------------------|
|------------------|--------------------------------------------------------------------------------------------|
| Content-Encoding | Description |
|------------------|--------------------------------------------------------------------------------------------|
| br-d | Brotli using an external compression dictionary and a compression window of up to 16 MB. |
| zstd-d | Zstandard using an external compression dictionary and a compression window of up to 8 MB. |
pmeenan marked this conversation as resolved.
Show resolved Hide resolved
|------------------|--------------------------------------------------------------------------------------------|
pmeenan marked this conversation as resolved.
Show resolved Hide resolved

The dictionary to use is negotiated separately and advertised in the
"Available-Dictionary" request header.
Expand Down Expand Up @@ -345,12 +345,12 @@ Vary: accept-encoding, available-dictionary
IANA is asked to update the "HTTP Content Coding Registry" registry
({{HTTP}}) according to the table below:

|--------|---------------------------------------------------------------------------------------|-------------|
| Name | Description | Reference |
|--------|---------------------------------------------------------------------------------------|-------------|
| br-d | A stream of bytes compressed using the Brotli protocol with an external dictionary | {{RFC7932}} |
| zstd-d | A stream of bytes compressed using the Zstandard protocol with an external dictionary | {{RFC8878}} |
|--------|---------------------------------------------------------------------------------------|-------------|
|--------|--------------------------------------------------------------------------------------------------------------------------------|-------------|
| Name | Description | Reference |
|--------|--------------------------------------------------------------------------------------------------------------------------------|-------------|
| br-d | A stream of bytes compressed using the Brotli protocol with an external dictionary and a compression window of up to 16 MB. | {{RFC7932}} |
pmeenan marked this conversation as resolved.
Show resolved Hide resolved
| zstd-d | A stream of bytes compressed using the Zstandard protocol with an external dictionary and a compression window of up to 8 MB. | {{RFC8878}} |
pmeenan marked this conversation as resolved.
Show resolved Hide resolved
|--------|--------------------------------------------------------------------------------------------------------------------------------|-------------|

## Header Field Registration

Expand Down
Loading