comparison src/event/ngx_event_pipe.c @ 256:2e9c57a5e50a NGINX_0_4_13

nginx 0.4.13 *) Feature: the "proxy_pass" directive may be used inside the "limit_except" block. *) Feature: the "limit_except" directive supports all WebDAV methods. *) Bugfix: if the "add_before_body" directive was used without the "add_after_body" directive, then an response did not transferred complete. *) Bugfix: a large request body did not receive if the epoll method and the deferred accept() were used. *) Bugfix: a charset could not be set for ngx_http_autoindex_module responses; bug appeared in 0.3.50. *) Bugfix: the "[alert] zero size buf" error when FastCGI server was used; *) Bugfix: the --group= configuration parameter was ignored. Thanks to Thomas Moschny. *) Bugfix: the 50th subrequest in SSI response did not work; bug appeared in 0.3.50.
author Igor Sysoev <http://sysoev.ru>
date Wed, 15 Nov 2006 00:00:00 +0300
parents 6be073125f2e
children 6ae1357b7b7c
comparison
equal deleted inserted replaced
255:a13bad126e69 256:2e9c57a5e50a
509 for ( ;; ) { 509 for ( ;; ) {
510 if (p->out) { 510 if (p->out) {
511 cl = p->out; 511 cl = p->out;
512 512
513 if (cl->buf->recycled 513 if (cl->buf->recycled
514 && cl->buf->last_shadow
514 && bsize + cl->buf->last - cl->buf->pos > p->busy_size) 515 && bsize + cl->buf->last - cl->buf->pos > p->busy_size)
515 { 516 {
516 flush = 1; 517 flush = 1;
517 break; 518 break;
518 } 519 }
523 524
524 } else if (!p->cachable && p->in) { 525 } else if (!p->cachable && p->in) {
525 cl = p->in; 526 cl = p->in;
526 527
527 if (cl->buf->recycled 528 if (cl->buf->recycled
529 && cl->buf->last_shadow
528 && bsize + cl->buf->last - cl->buf->pos > p->busy_size) 530 && bsize + cl->buf->last - cl->buf->pos > p->busy_size)
529 { 531 {
530 flush = 1; 532 flush = 1;
531 break; 533 break;
532 } 534 }