comparison src/http/ngx_http_request.c @ 254:f3ec44f4a53b NGINX_0_4_12

nginx 0.4.12 *) Feature: the ngx_http_perl_module supports the $r->variable method. *) Bugfix: if a big static file was included using SSI in a response, then the response may be transferred incomplete. *) Bugfix: nginx did not omit the "#fragment" part in URI.
author Igor Sysoev <http://sysoev.ru>
date Tue, 31 Oct 2006 00:00:00 +0300
parents acd2ec3541cb
children 6ae1357b7b7c
comparison
equal deleted inserted replaced
253:b75231e1a353 254:f3ec44f4a53b
1734 1734
1735 if (ngx_handle_write_event(wev, clcf->send_lowat) == NGX_ERROR) { 1735 if (ngx_handle_write_event(wev, clcf->send_lowat) == NGX_ERROR) {
1736 ngx_http_close_request(r, 0); 1736 ngx_http_close_request(r, 0);
1737 } 1737 }
1738 1738
1739 if (r == r->main) { 1739 if (r == r->main || r->buffered) {
1740 return; 1740 return;
1741 } 1741 }
1742 1742
1743 rc = NGX_OK; 1743 rc = NGX_OK;
1744 } 1744 }