comparison src/core/ngx_output_chain.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
36 { 36 {
37 return ctx->output_filter(ctx->filter_ctx, in); 37 return ctx->output_filter(ctx->filter_ctx, in);
38 } 38 }
39 } 39 }
40 40
41 /* add the incoming hunk to the chain ctx->in */ 41 /* add the incoming buf to the chain ctx->in */
42 42
43 if (in) { 43 if (in) {
44 if (ngx_chain_add_copy(ctx->pool, &ctx->in, in) == NGX_ERROR) { 44 if (ngx_chain_add_copy(ctx->pool, &ctx->in, in) == NGX_ERROR) {
45 return NGX_ERROR; 45 return NGX_ERROR;
46 } 46 }