comparison src/http/ngx_http_copy_filter.c @ 343:6bdf858bff8c

nginx-0.0.3-2004-05-28-19:49:23 import; rename ngx_hunk_t to ngx_buf_t
author Igor Sysoev <igor@sysoev.ru>
date Fri, 28 May 2004 15:49:23 +0000
parents af451db3fe99
children 55e496a8ece3
comparison
equal deleted inserted replaced
342:0ee0642af5f1 343:6bdf858bff8c
78 ctx->need_in_memory = r->filter & NGX_HTTP_FILTER_NEED_IN_MEMORY; 78 ctx->need_in_memory = r->filter & NGX_HTTP_FILTER_NEED_IN_MEMORY;
79 ctx->need_in_temp = r->filter & NGX_HTTP_FILTER_NEED_TEMP; 79 ctx->need_in_temp = r->filter & NGX_HTTP_FILTER_NEED_TEMP;
80 80
81 ctx->pool = r->pool; 81 ctx->pool = r->pool;
82 ctx->bufs = conf->bufs; 82 ctx->bufs = conf->bufs;
83 ctx->tag = (ngx_hunk_tag_t) &ngx_http_copy_filter_module; 83 ctx->tag = (ngx_buf_tag_t) &ngx_http_copy_filter_module;
84 84
85 ctx->output_filter = (ngx_output_chain_filter_pt) ngx_http_next_filter; 85 ctx->output_filter = (ngx_output_chain_filter_pt) ngx_http_next_filter;
86 ctx->filter_ctx = r; 86 ctx->filter_ctx = r;
87 87
88 } 88 }