view src/http/ngx_http_output_filter.h @ 60:50186b49f2ad

nginx-0.0.1-2003-02-11-10:14:40 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 11 Feb 2003 07:14:40 +0000
parents d81326c3b21b
children 4f3e2abcc2c4
line wrap: on
line source

#ifndef _NGX_HTTP_OUTPUT_FILTER_H_INCLUDED_
#define _NGX_HTTP_OUTPUT_FILTER_H_INCLUDED_


#include <ngx_hunk.h>
#include <ngx_conf_file.h>
#include <ngx_http.h>


#define NGX_HTTP_FILTER_NEED_IN_MEMORY      1
#define NGX_HTTP_FILTER_SSI_NEED_IN_MEMORY  2
#define NGX_HTTP_FILTER_NEED_TEMP           4


typedef struct {
    size_t        hunk_size;
} ngx_http_output_filter_conf_t;


typedef struct {
    ngx_hunk_t   *hunk;
    ngx_chain_t  *in;
    ngx_chain_t   out;
} ngx_http_output_filter_ctx_t;


int ngx_http_output_filter(ngx_http_request_t *r, ngx_hunk_t *hunk);


extern ngx_module_t  ngx_http_output_filter_module;


#endif /* _NGX_HTTP_OUTPUT_FILTER_H_INCLUDED_ */