comparison src/core/ngx_output_chain.c @ 408:d6e2b445c1b8

nginx-0.0.10-2004-08-27-19:40:59 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 27 Aug 2004 15:40:59 +0000
parents ea3113b181d1
children 1fa5daf7558e
comparison
equal deleted inserted replaced
407:35fe251cd231 408:d6e2b445c1b8
273 273
274 ngx_chain_t *cl; 274 ngx_chain_t *cl;
275 275
276 276
277 for (/* void */; in; in = in->next) { 277 for (/* void */; in; in = in->next) {
278
279 ngx_log_debug1(NGX_LOG_DEBUG_CORE, ctx->connection->log, 0,
280 "WRITER buf: %d", ngx_buf_size(in->buf));
281
278 ngx_alloc_link_and_set_buf(cl, in->buf, ctx->pool, NGX_ERROR); 282 ngx_alloc_link_and_set_buf(cl, in->buf, ctx->pool, NGX_ERROR);
279 *ctx->last = cl; 283 *ctx->last = cl;
280 ctx->last = &cl->next; 284 ctx->last = &cl->next;
281 } 285 }
282 286