comparison src/http/ngx_http_core_module.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
1650 1650
1651 1651
1652 ngx_int_t 1652 ngx_int_t
1653 ngx_http_output_filter(ngx_http_request_t *r, ngx_chain_t *in) 1653 ngx_http_output_filter(ngx_http_request_t *r, ngx_chain_t *in)
1654 { 1654 {
1655 ngx_int_t rc; 1655 ngx_int_t rc;
1656 1656 ngx_connection_t *c;
1657 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, 1657
1658 c = r->connection;
1659
1660 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, c->log, 0,
1658 "http output filter \"%V?%V\"", &r->uri, &r->args); 1661 "http output filter \"%V?%V\"", &r->uri, &r->args);
1659 1662
1660 rc = ngx_http_top_body_filter(r, in); 1663 rc = ngx_http_top_body_filter(r, in);
1661 1664
1662 if (rc == NGX_ERROR) { 1665 if (rc == NGX_ERROR) {
1666
1667 if (c->destroyed) {
1668 return NGX_DONE;
1669 }
1670
1663 /* NGX_ERROR may be returned by any filter */ 1671 /* NGX_ERROR may be returned by any filter */
1664 r->connection->error = 1; 1672 c->error = 1;
1665 } 1673 }
1666 1674
1667 return rc; 1675 return rc;
1668 } 1676 }
1669 1677