comparison src/http/ngx_http_core_module.h @ 8024:ef6a3a99a81a

Reworked multi headers to use linked lists. Multi headers are now using linked lists instead of arrays. Notably, the following fields were changed: r->headers_in.cookies (renamed to r->headers_in.cookie), r->headers_in.x_forwarded_for, r->headers_out.cache_control, r->headers_out.link, u->headers_in.cache_control u->headers_in.cookies (renamed to u->headers_in.set_cookie). The r->headers_in.cookies and u->headers_in.cookies fields were renamed to r->headers_in.cookie and u->headers_in.set_cookie to match header names. The ngx_http_parse_multi_header_lines() and ngx_http_parse_set_cookie_lines() functions were changed accordingly. With this change, multi headers are now essentially equivalent to normal headers, and following changes will further make them equivalent.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 30 May 2022 21:25:33 +0300
parents f8f6b9fee66a
children 4eb1383f6432 8d0753760546
comparison
equal deleted inserted replaced
8023:08b3ea81ff5f 8024:ef6a3a99a81a
527 527
528 ngx_int_t ngx_http_set_disable_symlinks(ngx_http_request_t *r, 528 ngx_int_t ngx_http_set_disable_symlinks(ngx_http_request_t *r,
529 ngx_http_core_loc_conf_t *clcf, ngx_str_t *path, ngx_open_file_info_t *of); 529 ngx_http_core_loc_conf_t *clcf, ngx_str_t *path, ngx_open_file_info_t *of);
530 530
531 ngx_int_t ngx_http_get_forwarded_addr(ngx_http_request_t *r, ngx_addr_t *addr, 531 ngx_int_t ngx_http_get_forwarded_addr(ngx_http_request_t *r, ngx_addr_t *addr,
532 ngx_array_t *headers, ngx_str_t *value, ngx_array_t *proxies, 532 ngx_table_elt_t *headers, ngx_str_t *value, ngx_array_t *proxies,
533 int recursive); 533 int recursive);
534 534
535 ngx_int_t ngx_http_link_multi_headers(ngx_http_request_t *r); 535 ngx_int_t ngx_http_link_multi_headers(ngx_http_request_t *r);
536 536
537 537