comparison src/http/modules/perl/ngx_http_perl_module.c @ 635:18268abd340c release-0.3.39

nginx-0.3.39-RELEASE import *) Feature: the "uninitialized_variable_warn" directive; the logging level of the "uninitialized variable" message was lowered from "alert" to "warn". *) Feature: the "override_charset" directive. *) Change: now if the unknown variable is used in the "echo" and "if expr='$name'" SSI-commands, then the "unknown variable" message is not logged. *) Bugfix: the active connection counter increased on the exceeding of the connection limit specified by the "worker_connections" directive; the bug had appeared in 0.2.0. *) Bugfix: the limit rate might not work on some condition; the bug had appeared in 0.3.38.
author Igor Sysoev <igor@sysoev.ru>
date Mon, 17 Apr 2006 19:55:41 +0000
parents f971949ffb58
children e60fe4cf1d4e
comparison
equal deleted inserted replaced
634:af8e20368022 635:18268abd340c
186 return NGX_HTTP_NOT_FOUND; 186 return NGX_HTTP_NOT_FOUND;
187 } 187 }
188 188
189 r->request_body_in_single_buf = 1; 189 r->request_body_in_single_buf = 1;
190 r->request_body_in_persistent_file = 1; 190 r->request_body_in_persistent_file = 1;
191 r->request_body_delete_incomplete_file = 1;
191 192
192 rc = ngx_http_read_client_request_body(r, ngx_http_perl_handle_request); 193 rc = ngx_http_read_client_request_body(r, ngx_http_perl_handle_request);
193 194
194 if (rc >= NGX_HTTP_SPECIAL_RESPONSE) { 195 if (rc >= NGX_HTTP_SPECIAL_RESPONSE) {
195 return rc; 196 return rc;