comparison src/http/ngx_http.h @ 8679:e1eb7f4ca9f1 quic

HTTP/3: refactored request parser. The change reduces diff to the default branch for src/http/ngx_http_request.c and src/http/ngx_http_parse.c.
author Roman Arutyunyan <arut@nginx.com>
date Fri, 22 Jan 2021 16:34:06 +0300
parents 0596fe1aee16
children 6bd8ed493b85
comparison
equal deleted inserted replaced
8678:3443ee341cc1 8679:e1eb7f4ca9f1
132 void ngx_http_update_location_config(ngx_http_request_t *r); 132 void ngx_http_update_location_config(ngx_http_request_t *r);
133 void ngx_http_handler(ngx_http_request_t *r); 133 void ngx_http_handler(ngx_http_request_t *r);
134 void ngx_http_run_posted_requests(ngx_connection_t *c); 134 void ngx_http_run_posted_requests(ngx_connection_t *c);
135 ngx_int_t ngx_http_post_request(ngx_http_request_t *r, 135 ngx_int_t ngx_http_post_request(ngx_http_request_t *r,
136 ngx_http_posted_request_t *pr); 136 ngx_http_posted_request_t *pr);
137 ngx_int_t ngx_http_set_virtual_server(ngx_http_request_t *r,
138 ngx_str_t *host);
139 ngx_int_t ngx_http_validate_host(ngx_str_t *host, ngx_pool_t *pool,
140 ngx_uint_t alloc);
141 void ngx_http_close_request(ngx_http_request_t *r, ngx_int_t rc);
137 void ngx_http_finalize_request(ngx_http_request_t *r, ngx_int_t rc); 142 void ngx_http_finalize_request(ngx_http_request_t *r, ngx_int_t rc);
138 void ngx_http_free_request(ngx_http_request_t *r, ngx_int_t rc); 143 void ngx_http_free_request(ngx_http_request_t *r, ngx_int_t rc);
139 144
140 void ngx_http_empty_handler(ngx_event_t *wev); 145 void ngx_http_empty_handler(ngx_event_t *wev);
141 void ngx_http_request_empty_handler(ngx_http_request_t *r); 146 void ngx_http_request_empty_handler(ngx_http_request_t *r);