diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2024-09-10 16:48:11 +0400 |
---|---|---|
committer | Roman Arutyunyan <arutyunyan.roman@gmail.com> | 2024-09-13 16:47:56 +0400 |
commit | 1a64c196a7d43f83a14fec20ce8936e599c92865 (patch) | |
tree | 4a04dac2ff955f43e9795ebb152fbc4055a6aacf /src/http/ngx_http.h | |
parent | 00637cce366f17b78fe1ed5c1ef0e534143045f6 (diff) | |
download | nginx-1a64c196a7d43f83a14fec20ce8936e599c92865.tar.gz nginx-1a64c196a7d43f83a14fec20ce8936e599c92865.zip |
Proxy: proxy_pass_trailers directive.
The directive allows to pass upstream response trailers to client.
Diffstat (limited to 'src/http/ngx_http.h')
-rw-r--r-- | src/http/ngx_http.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http.h b/src/http/ngx_http.h index e06464ebd..cb4a1e68a 100644 --- a/src/http/ngx_http.h +++ b/src/http/ngx_http.h @@ -117,7 +117,7 @@ ngx_int_t ngx_http_arg(ngx_http_request_t *r, u_char *name, size_t len, void ngx_http_split_args(ngx_http_request_t *r, ngx_str_t *uri, ngx_str_t *args); ngx_int_t ngx_http_parse_chunked(ngx_http_request_t *r, ngx_buf_t *b, - ngx_http_chunked_t *ctx); + ngx_http_chunked_t *ctx, ngx_uint_t keep_trailers); ngx_http_request_t *ngx_http_create_request(ngx_connection_t *c); |