Igor Sysoev | e0268b9 | 2002-09-11 15:18:33 +0000 | [diff] [blame] | 1 | #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 Sysoev | e0268b9 | 2002-09-11 15:18:33 +0000 | [diff] [blame] | 8 | |
Igor Sysoev | 207ed5a | 2002-12-26 16:26:23 +0000 | [diff] [blame] | 9 | typedef struct { |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 10 | void **main_conf; |
| 11 | void **srv_conf; |
| 12 | void **loc_conf; |
Igor Sysoev | 207ed5a | 2002-12-26 16:26:23 +0000 | [diff] [blame] | 13 | } ngx_http_conf_ctx_t; |
| 14 | |
| 15 | |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 16 | typedef 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 | |
| 22 | typedef struct { |
Igor Sysoev | 7832933 | 2003-11-10 17:17:31 +0000 | [diff] [blame] | 23 | int (*pre_conf)(ngx_conf_t *cf); |
| 24 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 25 | void *(*create_main_conf)(ngx_conf_t *cf); |
| 26 | char *(*init_main_conf)(ngx_conf_t *cf, void *conf); |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 27 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 28 | void *(*create_srv_conf)(ngx_conf_t *cf); |
| 29 | char *(*merge_srv_conf)(ngx_conf_t *cf, void *prev, void *conf); |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 30 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 31 | void *(*create_loc_conf)(ngx_conf_t *cf); |
| 32 | char *(*merge_loc_conf)(ngx_conf_t *cf, void *prev, void *conf); |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 33 | } ngx_http_module_t; |
| 34 | |
| 35 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 36 | #define NGX_HTTP_MODULE 0x50545448 /* "HTTP" */ |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 37 | |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 38 | #define NGX_HTTP_MAIN_CONF 0x2000000 |
| 39 | #define NGX_HTTP_SRV_CONF 0x4000000 |
| 40 | #define NGX_HTTP_LOC_CONF 0x8000000 |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 41 | |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 42 | |
Igor Sysoev | bb4ec5c | 2003-05-16 15:27:48 +0000 | [diff] [blame] | 43 | #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 Sysoev | 207ed5a | 2002-12-26 16:26:23 +0000 | [diff] [blame] | 46 | |
| 47 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 48 | #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 Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 51 | |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 52 | #define ngx_http_conf_module_main_conf(cf, module) \ |
| 53 | ((ngx_http_conf_ctx_t *) cf->ctx)->main_conf[module.ctx_index] |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 54 | |
Igor Sysoev | 207ed5a | 2002-12-26 16:26:23 +0000 | [diff] [blame] | 55 | |
Igor Sysoev | 42feecb | 2002-12-15 06:25:09 +0000 | [diff] [blame] | 56 | extern int (*ngx_http_top_header_filter) (ngx_http_request_t *r); |
| 57 | |
Igor Sysoev | e0268b9 | 2002-09-11 15:18:33 +0000 | [diff] [blame] | 58 | |
Igor Sysoev | 7300977 | 2003-02-06 17:21:13 +0000 | [diff] [blame] | 59 | #endif /* _NGX_HTTP_CONFIG_H_INCLUDED_ */ |