Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2006-11-24 16:19:13 +0300
committerIgor Sysoev <igor@sysoev.ru>2006-11-24 16:19:13 +0300
commit446abc3b4d5ac9427ee9e3cf2076e17570ee832f (patch)
treeaaff01166c8dc59b54cea7e3bec1894bbc27c18e /src/http/modules/perl/ngx_http_perl_module.c
parent7392524ca0203f6ecb0416a0675381440ad376a3 (diff)
axe unused code
Diffstat (limited to 'src/http/modules/perl/ngx_http_perl_module.c')
-rw-r--r--src/http/modules/perl/ngx_http_perl_module.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/http/modules/perl/ngx_http_perl_module.c b/src/http/modules/perl/ngx_http_perl_module.c
index 4fd19485f..53b2f49cb 100644
--- a/src/http/modules/perl/ngx_http_perl_module.c
+++ b/src/http/modules/perl/ngx_http_perl_module.c
@@ -200,24 +200,6 @@ ngx_http_perl_handler(ngx_http_request_t *r)
ngx_http_perl_handle_request(r);
return NGX_DONE;
-
-#if 0
- r->request_body_in_single_buf = 1;
- r->request_body_in_persistent_file = 1;
- r->request_body_delete_incomplete_file = 1;
-
- if (r->request_body_in_file_only) {
- r->request_body_file_log_level = 0;
- }
-
- rc = ngx_http_read_client_request_body(r, ngx_http_perl_handle_request);
-
- if (rc >= NGX_HTTP_SPECIAL_RESPONSE) {
- return rc;
- }
-
- return NGX_DONE;
-#endif
}