comparison src/http/v3/ngx_http_v3_request.c @ 8807:0ac25efb2da3 quic

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
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 01 Jul 2021 15:37:53 +0300
parents 67f0eb150047
children c35b255d80dc
comparison
equal deleted inserted replaced
8806:f8ad3dd142ad 8807:0ac25efb2da3
302 continue; 302 continue;
303 } 303 }
304 304
305 /* rc == NGX_OK || rc == NGX_DONE */ 305 /* rc == NGX_OK || rc == NGX_DONE */
306 306
307 if (ngx_http_v3_process_header(r, &st->header_rep.header.name, 307 if (ngx_http_v3_process_header(r, &st->field_rep.field.name,
308 &st->header_rep.header.value) 308 &st->field_rep.field.value)
309 != NGX_OK) 309 != NGX_OK)
310 { 310 {
311 break; 311 break;
312 } 312 }
313 313