comparison src/http/modules/ngx_http_charset_filter_module.c @ 432:fd759445d8a8 NGINX_0_7_28

nginx 0.7.28 *) Change: in memory allocation in the ngx_http_gzip_filter_module. *) Change: the default "gzip_buffers" directive values have been changed to 32 4k or 16 8k from 4 4k/8k.
author Igor Sysoev <http://sysoev.ru>
date Mon, 22 Dec 2008 00:00:00 +0300
parents 9d81578d04bb
children a8424ffa495c
comparison
equal deleted inserted replaced
431:e2c4e8b635a8 432:fd759445d8a8
539 539
540 if (ngx_buf_size(b) != 0) { 540 if (ngx_buf_size(b) != 0) {
541 break; 541 break;
542 } 542 }
543 543
544 #if (NGX_HAVE_WRITE_ZEROCOPY)
545 if (b->zerocopy_busy) {
546 break;
547 }
548 #endif
549
550 ctx->busy = cl->next; 544 ctx->busy = cl->next;
551 545
552 if (b->tag != (ngx_buf_tag_t) &ngx_http_charset_filter_module) { 546 if (b->tag != (ngx_buf_tag_t) &ngx_http_charset_filter_module) {
553 continue; 547 continue;
554 } 548 }