comparison src/http/ngx_http_output_filter.h @ 8:708f8bb772ec

nginx-0.0.1-2002-09-02-18:48:24 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 02 Sep 2002 14:48:24 +0000
parents src/http/ngx_http_filter.h@c5f071d376e5
children 6f58641241bb
comparison
equal deleted inserted replaced
7:b5481d6fbbd4 8:708f8bb772ec
1 #ifndef _NGX_HTTP_OUTPUT_FILTER_H_INCLUDED_
2 #define _NGX_HTTP_OUTPUT_FILTER_H_INCLUDED_
3
4
5 #include <ngx_core.h>
6
7 #define NGX_HTTP_FILTER_NEED_IN_MEMORY 1
8 #define NGX_HTTP_FILTER_NEED_TEMP 2
9
10 typedef struct {
11 int (*next_filter)(ngx_http_request_t *r, ngx_chain_t *ch);
12 ngx_hunk_t *hunk;
13 ngx_chain_t *in;
14 ngx_chain_t out;
15 size_t hunk_size;
16 unsigned last;
17 } ngx_http_output_filter_ctx_t;
18
19
20 #endif /* _NGX_HTTP_OUTPUT_FILTER_H_INCLUDED_ */