comparison src/http/ngx_http_request.h @ 433:9a97dcdd2421

nginx-0.0.11-2004-09-21-19:47:05 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 21 Sep 2004 15:47:05 +0000
parents 11362a3e3911
children 5cdc4838d4e8
comparison
equal deleted inserted replaced
432:11362a3e3911 433:9a97dcdd2421
216 unsigned cache:1; 216 unsigned cache:1;
217 }; 217 };
218 218
219 219
220 typedef struct { 220 typedef struct {
221 ngx_http_request_t *request; 221 ngx_http_request_t *request;
222 ngx_array_t large_buffers; 222
223 ngx_uint_t pipeline; /* unsigned pipeline:1; */ 223 ngx_buf_t **busy;
224 ngx_uint_t nbusy;
225
226 ngx_buf_t **free;
227 ngx_uint_t nfree;
228
229 ngx_uint_t pipeline; /* unsigned pipeline:1; */
224 } ngx_http_connection_t; 230 } ngx_http_connection_t;
225 231
226 232
227 typedef ngx_int_t (*ngx_http_handler_pt)(ngx_http_request_t *r); 233 typedef ngx_int_t (*ngx_http_handler_pt)(ngx_http_request_t *r);
228 234