comparison src/core/ngx_output_chain.c @ 291:117ccc7c4055

nginx-0.0.3-2004-03-16-16:35:20 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 16 Mar 2004 13:35:20 +0000
parents 70e1c7d2b83d
children 5cfd65b8b0a7
comparison
equal deleted inserted replaced
290:87e73f067470 291:117ccc7c4055
263 ngx_alloc_link_and_set_hunk(cl, in->hunk, ctx->pool, NGX_ERROR); 263 ngx_alloc_link_and_set_hunk(cl, in->hunk, ctx->pool, NGX_ERROR);
264 *ctx->last = cl; 264 *ctx->last = cl;
265 ctx->last = &cl->next; 265 ctx->last = &cl->next;
266 } 266 }
267 267
268 ngx_log_debug1(NGX_LOG_DEBUG_CORE, ctx->connection->log, 0,
269 "WRITER0: %X", ctx->out);
270
268 ctx->out = ngx_write_chain(ctx->connection, ctx->out); 271 ctx->out = ngx_write_chain(ctx->connection, ctx->out);
272
273 ngx_log_debug1(NGX_LOG_DEBUG_CORE, ctx->connection->log, 0,
274 "WRITER1: %X", ctx->out);
269 275
270 if (ctx->out == NGX_CHAIN_ERROR) { 276 if (ctx->out == NGX_CHAIN_ERROR) {
271 return NGX_ERROR; 277 return NGX_ERROR;
272 } 278 }
273 279