Igor Sysoev | d90282d | 2004-09-28 08:34:51 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
Igor Sysoev | ff8da91 | 2004-09-29 16:00:49 +0000 | [diff] [blame^] | 3 | * Copyright (C) Igor Sysoev |
Igor Sysoev | d90282d | 2004-09-28 08:34:51 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | |
Igor Sysoev | e0268b9 | 2002-09-11 15:18:33 +0000 | [diff] [blame] | 7 | #ifndef _NGX_HTTP_CONFIG_H_INCLUDED_ |
| 8 | #define _NGX_HTTP_CONFIG_H_INCLUDED_ |
| 9 | |
| 10 | |
| 11 | #include <ngx_alloc.h> |
| 12 | #include <ngx_http.h> |
| 13 | |
Igor Sysoev | e0268b9 | 2002-09-11 15:18:33 +0000 | [diff] [blame] | 14 | |
Igor Sysoev | 207ed5a | 2002-12-26 16:26:23 +0000 | [diff] [blame] | 15 | typedef struct { |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 16 | void **main_conf; |
| 17 | void **srv_conf; |
| 18 | void **loc_conf; |
Igor Sysoev | 207ed5a | 2002-12-26 16:26:23 +0000 | [diff] [blame] | 19 | } ngx_http_conf_ctx_t; |
| 20 | |
| 21 | |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 22 | typedef struct { |
Igor Sysoev | 2f65722 | 2004-06-16 15:32:11 +0000 | [diff] [blame] | 23 | ngx_int_t (*pre_conf)(ngx_conf_t *cf); |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 24 | |
Igor Sysoev | 2f65722 | 2004-06-16 15:32:11 +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 | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 27 | |
Igor Sysoev | 2f65722 | 2004-06-16 15:32:11 +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 | 7832933 | 2003-11-10 17:17:31 +0000 | [diff] [blame] | 30 | |
Igor Sysoev | 2f65722 | 2004-06-16 15:32:11 +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 | 43f1319 | 2004-04-12 16:38:09 +0000 | [diff] [blame] | 38 | #define NGX_HTTP_MAIN_CONF 0x02000000 |
| 39 | #define NGX_HTTP_SRV_CONF 0x04000000 |
| 40 | #define NGX_HTTP_LOC_CONF 0x08000000 |
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 | f38e046 | 2004-07-16 17:11:43 +0000 | [diff] [blame] | 52 | /* |
| 53 | * ngx_http_conf_get_module_srv_conf() and ngx_http_conf_get_module_loc_conf() |
Igor Sysoev | 562626a | 2004-09-14 05:45:22 +0000 | [diff] [blame] | 54 | * must not be used at the merge phase because cf->ctx points to http{}'s ctx |
Igor Sysoev | f38e046 | 2004-07-16 17:11:43 +0000 | [diff] [blame] | 55 | */ |
Igor Sysoev | 1c3567e | 2004-07-15 16:35:51 +0000 | [diff] [blame] | 56 | |
Igor Sysoev | 74a5ddb | 2004-07-18 19:11:20 +0000 | [diff] [blame] | 57 | #define ngx_http_conf_get_module_main_conf(cf, module) \ |
| 58 | ((ngx_http_conf_ctx_t *) cf->ctx)->main_conf[module.ctx_index] |
| 59 | #define ngx_http_conf_get_module_srv_conf(cf, module) \ |
| 60 | ((ngx_http_conf_ctx_t *) cf->ctx)->srv_conf[module.ctx_index] |
| 61 | #define ngx_http_conf_get_module_loc_conf(cf, module) \ |
| 62 | ((ngx_http_conf_ctx_t *) cf->ctx)->loc_conf[module.ctx_index] |
| 63 | |
Igor Sysoev | 1c3567e | 2004-07-15 16:35:51 +0000 | [diff] [blame] | 64 | #define ngx_http_cycle_get_module_main_conf(cycle, module) \ |
| 65 | ((ngx_http_conf_ctx_t *) \ |
| 66 | cycle->conf_ctx[ngx_http_module.index])->main_conf[module.ctx_index] |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 67 | |
Igor Sysoev | 207ed5a | 2002-12-26 16:26:23 +0000 | [diff] [blame] | 68 | |
Igor Sysoev | e0268b9 | 2002-09-11 15:18:33 +0000 | [diff] [blame] | 69 | |
Igor Sysoev | 7300977 | 2003-02-06 17:21:13 +0000 | [diff] [blame] | 70 | #endif /* _NGX_HTTP_CONFIG_H_INCLUDED_ */ |