comparison src/http/ngx_http_request_body.c @ 636:943566b4d82e NGINX_1_1_2

nginx 1.1.2 *) Change: now if total size of all ranges is greater than source response size, then nginx disables ranges and returns just the source response. *) Feature: the "max_ranges" directive. *) Bugfix: the "ssl_verify_client", "ssl_verify_depth", and "ssl_prefer_server_ciphers" directives might work incorrectly if SNI was used. *) Bugfix: in the "proxy/fastcgi/scgi/uwsgi_ignore_client_abort" directives.
author Igor Sysoev <http://sysoev.ru>
date Mon, 05 Sep 2011 00:00:00 +0400
parents 23ef0645ea57
children d0f7a625f27c
comparison
equal deleted inserted replaced
635:5d94f8b3e01d 636:943566b4d82e
376 && (r->request_body_in_file_only || r->request_body_in_single_buf)) 376 && (r->request_body_in_file_only || r->request_body_in_single_buf))
377 { 377 {
378 rb->bufs = rb->bufs->next; 378 rb->bufs = rb->bufs->next;
379 } 379 }
380 380
381 r->read_event_handler = ngx_http_block_reading;
382
381 rb->post_handler(r); 383 rb->post_handler(r);
382 384
383 return NGX_OK; 385 return NGX_OK;
384 } 386 }
385 387