comparison src/http/modules/perl/ngx_http_perl_module.c @ 867:6a99bc84c135

axe unused code
author Igor Sysoev <igor@sysoev.ru>
date Fri, 24 Nov 2006 13:19:13 +0000
parents a452a0e13539
children 783c198b4ded
comparison
equal deleted inserted replaced
866:8d77ff798f5c 867:6a99bc84c135
198 } 198 }
199 199
200 ngx_http_perl_handle_request(r); 200 ngx_http_perl_handle_request(r);
201 201
202 return NGX_DONE; 202 return NGX_DONE;
203
204 #if 0
205 r->request_body_in_single_buf = 1;
206 r->request_body_in_persistent_file = 1;
207 r->request_body_delete_incomplete_file = 1;
208
209 if (r->request_body_in_file_only) {
210 r->request_body_file_log_level = 0;
211 }
212
213 rc = ngx_http_read_client_request_body(r, ngx_http_perl_handle_request);
214
215 if (rc >= NGX_HTTP_SPECIAL_RESPONSE) {
216 return rc;
217 }
218
219 return NGX_DONE;
220 #endif
221 } 203 }
222 204
223 205
224 void 206 void
225 ngx_http_perl_handle_request(ngx_http_request_t *r) 207 ngx_http_perl_handle_request(ngx_http_request_t *r)