comparison src/http/ngx_http_core_module.c @ 642:d3cf6c6b0043 NGINX_1_1_5

nginx 1.1.5 *) Feature: the "uwsgi_buffering" and "scgi_buffering" directives. Thanks to Peter Smit. *) Bugfix: non-cacheable responses might be cached if "proxy_cache_bypass" directive was used. Thanks to John Ferlito. *) Bugfix: in HTTP/1.1 support in the ngx_http_proxy_module. *) Bugfix: cached responses with an empty body were returned incorrectly; the bug had appeared in 0.8.31. *) Bugfix: 201 responses of the ngx_http_dav_module were incorrect; the bug had appeared in 0.8.32. *) Bugfix: in the "return" directive. *) Bugfix: the "ssl_session_cache builtin" directive caused segmentation fault; the bug had appeared in 1.1.1.
author Igor Sysoev <http://sysoev.ru>
date Wed, 05 Oct 2011 00:00:00 +0400
parents eb208e0cf44d
children 6f21ae02fb01
comparison
equal deleted inserted replaced
641:6c19b251b926 642:d3cf6c6b0043
1782 ngx_int_t rc; 1782 ngx_int_t rc;
1783 ngx_str_t val; 1783 ngx_str_t val;
1784 ngx_buf_t *b; 1784 ngx_buf_t *b;
1785 ngx_chain_t out; 1785 ngx_chain_t out;
1786 1786
1787 if (ngx_http_discard_request_body(r) != NGX_OK) {
1788 return NGX_HTTP_INTERNAL_SERVER_ERROR;
1789 }
1790
1787 r->headers_out.status = status; 1791 r->headers_out.status = status;
1788
1789 if (status == NGX_HTTP_NO_CONTENT) {
1790 r->header_only = 1;
1791 return ngx_http_send_header(r);
1792 }
1793 1792
1794 if (ngx_http_complex_value(r, cv, &val) != NGX_OK) { 1793 if (ngx_http_complex_value(r, cv, &val) != NGX_OK) {
1795 return NGX_HTTP_INTERNAL_SERVER_ERROR; 1794 return NGX_HTTP_INTERNAL_SERVER_ERROR;
1796 } 1795 }
1797 1796