comparison src/http/ngx_http_request.h @ 343:6bdf858bff8c

nginx-0.0.3-2004-05-28-19:49:23 import; rename ngx_hunk_t to ngx_buf_t
author Igor Sysoev <igor@sysoev.ru>
date Fri, 28 May 2004 15:49:23 +0000
parents d4241d7787fe
children e366ba5db8f8
comparison
equal deleted inserted replaced
342:0ee0642af5f1 343:6bdf858bff8c
174 174
175 175
176 typedef struct { 176 typedef struct {
177 ngx_temp_file_t *temp_file; 177 ngx_temp_file_t *temp_file;
178 ngx_chain_t *bufs; 178 ngx_chain_t *bufs;
179 ngx_hunk_t *buf; 179 ngx_buf_t *buf;
180 size_t rest; 180 size_t rest;
181 void (*handler) (void *data); 181 void (*handler) (void *data);
182 void *data; 182 void *data;
183 } ngx_http_request_body_t; 183 } ngx_http_request_body_t;
184 184
214 ngx_http_cache_t *cache; 214 ngx_http_cache_t *cache;
215 215
216 ngx_file_t file; 216 ngx_file_t file;
217 217
218 ngx_pool_t *pool; 218 ngx_pool_t *pool;
219 ngx_hunk_t *header_in; 219 ngx_buf_t *header_in;
220 220
221 ngx_http_headers_in_t headers_in; 221 ngx_http_headers_in_t headers_in;
222 ngx_http_headers_out_t headers_out; 222 ngx_http_headers_out_t headers_out;
223 223
224 ngx_http_request_body_t *request_body; 224 ngx_http_request_body_t *request_body;