comparison src/http/ngx_http_request.h @ 692:6db6e93f55ee NGINX_1_3_9

nginx 1.3.9 *) Feature: support for chunked transfer encoding while reading client request body. *) Feature: the $request_time and $msec variables can now be used not only in the "log_format" directive. *) Bugfix: cache manager and cache loader processes might not be able to start if more than 512 listen sockets were used. *) Bugfix: in the ngx_http_dav_module.
author Igor Sysoev <http://sysoev.ru>
date Tue, 27 Nov 2012 00:00:00 +0400
parents 597573166f34
children
comparison
equal deleted inserted replaced
691:acfd484db0ca 692:6db6e93f55ee
222 ngx_str_t server; 222 ngx_str_t server;
223 off_t content_length_n; 223 off_t content_length_n;
224 time_t keep_alive_n; 224 time_t keep_alive_n;
225 225
226 unsigned connection_type:2; 226 unsigned connection_type:2;
227 unsigned chunked:1;
227 unsigned msie:1; 228 unsigned msie:1;
228 unsigned msie6:1; 229 unsigned msie6:1;
229 unsigned opera:1; 230 unsigned opera:1;
230 unsigned gecko:1; 231 unsigned gecko:1;
231 unsigned chrome:1; 232 unsigned chrome:1;
274 typedef struct { 275 typedef struct {
275 ngx_temp_file_t *temp_file; 276 ngx_temp_file_t *temp_file;
276 ngx_chain_t *bufs; 277 ngx_chain_t *bufs;
277 ngx_buf_t *buf; 278 ngx_buf_t *buf;
278 off_t rest; 279 off_t rest;
279 ngx_chain_t *to_write; 280 ngx_chain_t *free;
281 ngx_chain_t *busy;
282 ngx_http_chunked_t *chunked;
280 ngx_http_client_body_handler_pt post_handler; 283 ngx_http_client_body_handler_pt post_handler;
281 } ngx_http_request_body_t; 284 } ngx_http_request_body_t;
282 285
283 286
284 typedef struct { 287 typedef struct {