comparison src/http/ngx_http_request.h @ 197:0b81c7a0b133

nginx-0.0.1-2003-11-27-10:45:22 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 27 Nov 2003 07:45:22 +0000
parents 02a715e85df1
children abeaebe0a33c
comparison
equal deleted inserted replaced
196:11fbd0fc041d 197:0b81c7a0b133
142 time_t date_time; 142 time_t date_time;
143 time_t last_modified_time; 143 time_t last_modified_time;
144 } ngx_http_headers_out_t; 144 } ngx_http_headers_out_t;
145 145
146 146
147 typedef struct ngx_http_request_s ngx_http_request_t;
148
149 typedef int (*ngx_http_handler_pt)(ngx_http_request_t *r); 147 typedef int (*ngx_http_handler_pt)(ngx_http_request_t *r);
150 148
151 struct ngx_http_request_s { 149 struct ngx_http_request_s {
152 ngx_connection_t *connection; 150 ngx_connection_t *connection;
153 151
154 void **ctx; 152 void **ctx;
155 void **main_conf; 153 void **main_conf;
156 void **srv_conf; 154 void **srv_conf;
157 void **loc_conf; 155 void **loc_conf;
156
157 ngx_http_cache_t *cache;
158 158
159 ngx_file_t file; 159 ngx_file_t file;
160 160
161 ngx_pool_t *pool; 161 ngx_pool_t *pool;
162 ngx_hunk_t *header_in; 162 ngx_hunk_t *header_in;