comparison src/http/ngx_http_request.h @ 5105:4d67b696388f

Refactored ngx_http_init_request(). Now it can be used as the request object factory with minimal impact on the connection object. Therefore it was renamed to ngx_http_create_request().
author Valentin Bartenev <vbart@nginx.com>
date Thu, 07 Mar 2013 18:14:27 +0000
parents 63014d919fec
children c0f7b94e88ba
comparison
equal deleted inserted replaced
5104:93713d4b99c3 5105:4d67b696388f
306 ngx_int_t nbusy; 306 ngx_int_t nbusy;
307 307
308 ngx_buf_t **free; 308 ngx_buf_t **free;
309 ngx_int_t nfree; 309 ngx_int_t nfree;
310 310
311 unsigned pipeline:1; 311 #if (NGX_HTTP_SSL)
312 unsigned ssl:1; 312 ngx_uint_t ssl; /* unsigned ssl:1; */
313 #endif
313 } ngx_http_connection_t; 314 } ngx_http_connection_t;
314 315
315 316
316 typedef void (*ngx_http_cleanup_pt)(void *data); 317 typedef void (*ngx_http_cleanup_pt)(void *data);
317 318