diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2021-07-01 15:37:53 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2021-07-01 15:37:53 +0300 |
commit | a85084fea109c019d1ad7466ed063afa7961acba (patch) | |
tree | f59e01e707f2decd8c22948f33b25b2f795328db /src/http/v3/ngx_http_v3_request.c | |
parent | d54d551e2a880c7a7691a83d212eb707eb0f82ba (diff) | |
download | nginx-a85084fea109c019d1ad7466ed063afa7961acba.tar.gz nginx-a85084fea109c019d1ad7466ed063afa7961acba.zip |
HTTP/3: quic-qpack term updates.
Renamed header -> field per quic-qpack naming convention, in particular:
- Header Field -> Field Line
- Header Block -> (Encoded) Field Section
- Without Name Reference -> With Literal Name
- Header Acknowledgement -> Section Acknowledgment
Diffstat (limited to 'src/http/v3/ngx_http_v3_request.c')
-rw-r--r-- | src/http/v3/ngx_http_v3_request.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/v3/ngx_http_v3_request.c b/src/http/v3/ngx_http_v3_request.c index 9d7ca952d..5fc6e233b 100644 --- a/src/http/v3/ngx_http_v3_request.c +++ b/src/http/v3/ngx_http_v3_request.c @@ -304,8 +304,8 @@ ngx_http_v3_process_request(ngx_event_t *rev) /* rc == NGX_OK || rc == NGX_DONE */ - if (ngx_http_v3_process_header(r, &st->header_rep.header.name, - &st->header_rep.header.value) + if (ngx_http_v3_process_header(r, &st->field_rep.field.name, + &st->field_rep.field.value) != NGX_OK) { break; |