blob: ab5b47724ad1311bbcb9bd6fe20cee4c8d3485ea [file] [log] [blame]
Igor Sysoeve0268b92002-09-11 15:18:33 +00001#ifndef _NGX_HTTP_CONFIG_H_INCLUDED_
2#define _NGX_HTTP_CONFIG_H_INCLUDED_
3
4
5#include <ngx_alloc.h>
6#include <ngx_http.h>
7
Igor Sysoeve0268b92002-09-11 15:18:33 +00008
Igor Sysoev207ed5a2002-12-26 16:26:23 +00009typedef struct {
Igor Sysoeva9830112003-05-19 16:39:14 +000010 void **main_conf;
11 void **srv_conf;
12 void **loc_conf;
Igor Sysoev207ed5a2002-12-26 16:26:23 +000013} ngx_http_conf_ctx_t;
14
15
Igor Sysoevdc479b42003-03-20 16:09:44 +000016typedef struct {
17 int (*output_header_filter) (ngx_http_request_t *r);
18 int (*output_body_filter) (ngx_http_request_t *r, ngx_chain_t *ch);
19} ngx_http_conf_filter_t;
20
21
22typedef struct {
Igor Sysoev78329332003-11-10 17:17:31 +000023 int (*pre_conf)(ngx_conf_t *cf);
24
Igor Sysoev890fc962003-07-20 21:15:59 +000025 void *(*create_main_conf)(ngx_conf_t *cf);
26 char *(*init_main_conf)(ngx_conf_t *cf, void *conf);
Igor Sysoeva9830112003-05-19 16:39:14 +000027
Igor Sysoev890fc962003-07-20 21:15:59 +000028 void *(*create_srv_conf)(ngx_conf_t *cf);
29 char *(*merge_srv_conf)(ngx_conf_t *cf, void *prev, void *conf);
Igor Sysoevdc479b42003-03-20 16:09:44 +000030
Igor Sysoev890fc962003-07-20 21:15:59 +000031 void *(*create_loc_conf)(ngx_conf_t *cf);
32 char *(*merge_loc_conf)(ngx_conf_t *cf, void *prev, void *conf);
Igor Sysoevdc479b42003-03-20 16:09:44 +000033} ngx_http_module_t;
34
35
Igor Sysoev6253ca12003-05-27 12:18:54 +000036#define NGX_HTTP_MODULE 0x50545448 /* "HTTP" */
Igor Sysoevdc479b42003-03-20 16:09:44 +000037
Igor Sysoev79a80482003-05-14 17:13:13 +000038#define NGX_HTTP_MAIN_CONF 0x2000000
39#define NGX_HTTP_SRV_CONF 0x4000000
40#define NGX_HTTP_LOC_CONF 0x8000000
Igor Sysoev4e9393a2003-01-09 05:36:00 +000041
Igor Sysoevdc479b42003-03-20 16:09:44 +000042
Igor Sysoevbb4ec5c2003-05-16 15:27:48 +000043#define NGX_HTTP_MAIN_CONF_OFFSET offsetof(ngx_http_conf_ctx_t, main_conf)
44#define NGX_HTTP_SRV_CONF_OFFSET offsetof(ngx_http_conf_ctx_t, srv_conf)
45#define NGX_HTTP_LOC_CONF_OFFSET offsetof(ngx_http_conf_ctx_t, loc_conf)
Igor Sysoev207ed5a2002-12-26 16:26:23 +000046
47
Igor Sysoev6253ca12003-05-27 12:18:54 +000048#define ngx_http_get_module_main_conf(r, module) r->main_conf[module.ctx_index]
49#define ngx_http_get_module_srv_conf(r, module) r->srv_conf[module.ctx_index]
50#define ngx_http_get_module_loc_conf(r, module) r->loc_conf[module.ctx_index]
Igor Sysoevdc479b42003-03-20 16:09:44 +000051
Igor Sysoev74e95c22003-11-09 20:03:38 +000052#define ngx_http_conf_module_main_conf(cf, module) \
53 ((ngx_http_conf_ctx_t *) cf->ctx)->main_conf[module.ctx_index]
Igor Sysoevdc479b42003-03-20 16:09:44 +000054
Igor Sysoev207ed5a2002-12-26 16:26:23 +000055
Igor Sysoev42feecb2002-12-15 06:25:09 +000056extern int (*ngx_http_top_header_filter) (ngx_http_request_t *r);
57
Igor Sysoeve0268b92002-09-11 15:18:33 +000058
Igor Sysoev73009772003-02-06 17:21:13 +000059#endif /* _NGX_HTTP_CONFIG_H_INCLUDED_ */