comparison src/http/ngx_http_output_filter.h @ 61:4f3e2abcc2c4

nginx-0.0.1-2003-02-11-19:42:23 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 11 Feb 2003 16:42:23 +0000
parents 50186b49f2ad
children
comparison
equal deleted inserted replaced
60:50186b49f2ad 61:4f3e2abcc2c4
16 size_t hunk_size; 16 size_t hunk_size;
17 } ngx_http_output_filter_conf_t; 17 } ngx_http_output_filter_conf_t;
18 18
19 19
20 typedef struct { 20 typedef struct {
21 ngx_hunk_t *hunk; 21 ngx_hunk_t *hunk; /* the temporary hunk to copy */
22 ngx_chain_t *in; 22 ngx_chain_t *incoming;
23 ngx_chain_t out; 23 ngx_chain_t in; /* one chain entry for input */
24 ngx_chain_t out; /* one chain entry for output */
24 } ngx_http_output_filter_ctx_t; 25 } ngx_http_output_filter_ctx_t;
25 26
26 27
27 int ngx_http_output_filter(ngx_http_request_t *r, ngx_hunk_t *hunk); 28 int ngx_http_output_filter(ngx_http_request_t *r, ngx_hunk_t *hunk);
28 29