diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-09-21 05:38:28 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-09-21 05:38:28 +0000 |
commit | dd888c4caadfbd94c595e6e39bdb361de82dda9f (patch) | |
tree | 70b87e5dded501cf3c7449e4baa98f69a6fd0607 /src/http/ngx_http_request.h | |
parent | e5dabbf077412b8a7a3caf6501e3a410256fcf72 (diff) | |
download | nginx-dd888c4caadfbd94c595e6e39bdb361de82dda9f.tar.gz nginx-dd888c4caadfbd94c595e6e39bdb361de82dda9f.zip |
nginx-0.0.11-2004-09-21-09:38:28 import
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r-- | src/http/ngx_http_request.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index aafabbea3..4dd1e82ee 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -217,6 +217,13 @@ struct ngx_http_cleanup_s { }; +typedef struct { + ngx_http_request_t *request; + ngx_array_t large_buffers; + ngx_uint_t pipeline; /* unsigned pipeline:1; */ +} ngx_http_connection_t; + + typedef ngx_int_t (*ngx_http_handler_pt)(ngx_http_request_t *r); struct ngx_http_request_s { @@ -277,6 +284,8 @@ struct ngx_http_request_s { void **err_ctx; ngx_uint_t err_status; + ngx_http_connection_t *http_connection; + unsigned http_state:4; #if 0 |