comparison src/http/ngx_http_request.c @ 488:829f9a66a659 NGINX_0_7_56

nginx 0.7.56 *) Feature: nginx/Windows supports IPv6 in a "listen" directive of the HTTP module. *) Bugfix: in ngx_http_image_filter_module.
author Igor Sysoev <http://sysoev.ru>
date Mon, 11 May 2009 00:00:00 +0400
parents ed5e10fb40fc
children 98143f74eb3d
comparison
equal deleted inserted replaced
487:e98b980b4fe7 488:829f9a66a659
1813 1813
1814 ngx_log_debug4(NGX_LOG_DEBUG_HTTP, c->log, 0, 1814 ngx_log_debug4(NGX_LOG_DEBUG_HTTP, c->log, 0,
1815 "http finalize request: %d, \"%V?%V\" %d", 1815 "http finalize request: %d, \"%V?%V\" %d",
1816 rc, &r->uri, &r->args, r == c->data); 1816 rc, &r->uri, &r->args, r == c->data);
1817 1817
1818 if (rc == NGX_OK && r->filter_finalize) {
1819 c->error = 1;
1820 return;
1821 }
1822
1818 if (rc == NGX_DECLINED) { 1823 if (rc == NGX_DECLINED) {
1819 r->content_handler = NULL; 1824 r->content_handler = NULL;
1820 r->write_event_handler = ngx_http_core_run_phases; 1825 r->write_event_handler = ngx_http_core_run_phases;
1821 ngx_http_core_run_phases(r); 1826 ngx_http_core_run_phases(r);
1822 return; 1827 return;