comparison src/http/ngx_http_write_filter.c @ 77:57c2e18d3572

nginx-0.0.1-2003-04-17-21:59:35 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 17 Apr 2003 17:59:35 +0000
parents 869b10be682f
children b2ece31c976a
comparison
equal deleted inserted replaced
76:6127d7075471 77:57c2e18d3572
132 132
133 if (!last && flush == 0 && size < conf->buffer_output) { 133 if (!last && flush == 0 && size < conf->buffer_output) {
134 return NGX_OK; 134 return NGX_OK;
135 } 135 }
136 136
137 if (r->connection->write->delayed) {
138 return NGX_AGAIN;
139 }
140
137 chain = ngx_write_chain(r->connection, ctx->out, flush); 141 chain = ngx_write_chain(r->connection, ctx->out, flush);
138 142
139 #if (NGX_DEBUG_WRITE_FILTER) 143 #if (NGX_DEBUG_WRITE_FILTER)
140 ngx_log_debug(r->connection->log, "write filter %x" _ chain); 144 ngx_log_debug(r->connection->log, "write filter %x" _ chain);
141 #endif 145 #endif