comparison src/http/ngx_http_write_filter.c @ 344:e366ba5db8f8

nginx-0.0.3-2004-06-01-10:04:46 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 01 Jun 2004 06:04:46 +0000
parents 6bdf858bff8c
children 2e3cbc1bbe3c
comparison
equal deleted inserted replaced
343:6bdf858bff8c 344:e366ba5db8f8
127 127
128 conf = ngx_http_get_module_loc_conf(r->main ? r->main : r, 128 conf = ngx_http_get_module_loc_conf(r->main ? r->main : r,
129 ngx_http_write_filter_module); 129 ngx_http_write_filter_module);
130 130
131 /* 131 /*
132 * avoid the output if there is no last hunk, no flush point, 132 * avoid the output if there is no last buf, no flush point,
133 * there are the incoming hunks and the size of all hunks 133 * there are the incoming bufs and the size of all bufs
134 * is smaller than "postpone_output" directive 134 * is smaller than "postpone_output" directive
135 */ 135 */
136 136
137 if (!last && flush == 0 && in && size < (off_t) conf->postpone_output) { 137 if (!last && flush == 0 && in && size < (off_t) conf->postpone_output) {
138 return NGX_OK; 138 return NGX_OK;