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

Change Header Block to Header/Trailer Section, plus related changes. #1401

Merged
merged 1 commit into from
Feb 8, 2021
Merged
Changes from all commits
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
28 changes: 24 additions & 4 deletions draft-ietf-httpbis-proxy-status.md
Original file line number Diff line number Diff line change
Expand Up @@ -352,12 +352,12 @@ Note that additional information about the error can be recorded in the details
* Recommended HTTP status code: 502
* Notes: Responses with this error type might not have been generated by the intermediary.

### HTTP Response Header Block Too Large
### HTTP Response Header Section Too Large

* Name: http_response_header_block_size
* Description: The intermediary received a response to the request whose header block was considered too large.
* Name: http_response_header_section_size
* Description: The intermediary received a response to the request whose header section was considered too large.
* Extra Parameters:
- header-block-size: a sf-integer indicating how large the headers received were. Note that they might not be complete; i.e., the intermediary may have discarded or refused additional data.
- header-section-size: a sf-integer indicating how large the headers received were. Note that they might not be complete; i.e., the intermediary may have discarded or refused additional data.
* Recommended HTTP status code: 502
* Notes: Responses with this error type might not have been generated by the intermediary.

Expand All @@ -367,6 +367,7 @@ Note that additional information about the error can be recorded in the details
* Description: The intermediary received a response to the request containing an individual header line that was considered too large.
* Extra Parameters:
- header-name: a sf-string indicating the name of the header that triggered the error.
- header-size: a sf-integer indicating the size of the header that triggered the error.
* Recommended HTTP status code: 502
* Notes: Responses with this error type might not have been generated by the intermediary.

Expand All @@ -379,6 +380,25 @@ Note that additional information about the error can be recorded in the details
* Recommended HTTP status code: 502
* Notes: Responses with this error type might not have been generated by the intermediary.

### HTTP Response Trailer Section Too Large

* Name: http_response_trailer_section_size
* Description: The intermediary received a response to the request whose trailer section was considered too large.
* Extra Parameters:
- trailer-section-size: a sf-integer indicating how large the trailers received were. Note that they might not be complete; i.e., the intermediary may have discarded or refused additional data.
* Recommended HTTP status code: 502
* Notes: Responses with this error type might not have been generated by the intermediary.

### HTTP Response Trailer Too Large

* Name: http_response_trailer_size
* Description: The intermediary received a response to the request containing an individual trailer line that was considered too large.
* Extra Parameters:
- trailer-name: a sf-string indicating the name of the trailer that triggered the error.
- trailer-size: a sf-integer indicating the size of the trailer that triggered the error.
* Recommended HTTP status code: 502
* Notes: Responses with this error type might not have been generated by the intermediary.

### HTTP Response Transfer-Coding Error

* Name: http_response_transfer_coding
Expand Down