blob: be0052e590f7fb98128ff2b1ac966614d69eca8f [file] [log] [blame]
Igor Sysoevd90282d2004-09-28 08:34:51 +00001
2/*
Igor Sysoevff8da912004-09-29 16:00:49 +00003 * Copyright (C) Igor Sysoev
Igor Sysoevd90282d2004-09-28 08:34:51 +00004 */
5
6
Igor Sysoeve0268b92002-09-11 15:18:33 +00007#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 Sysoeve0268b92002-09-11 15:18:33 +000014
Igor Sysoev207ed5a2002-12-26 16:26:23 +000015typedef struct {
Igor Sysoeva9830112003-05-19 16:39:14 +000016 void **main_conf;
17 void **srv_conf;
18 void **loc_conf;
Igor Sysoev207ed5a2002-12-26 16:26:23 +000019} ngx_http_conf_ctx_t;
20
21
Igor Sysoevdc479b42003-03-20 16:09:44 +000022typedef struct {
Igor Sysoev2f657222004-06-16 15:32:11 +000023 ngx_int_t (*pre_conf)(ngx_conf_t *cf);
Igor Sysoevdc479b42003-03-20 16:09:44 +000024
Igor Sysoev2f657222004-06-16 15:32:11 +000025 void *(*create_main_conf)(ngx_conf_t *cf);
26 char *(*init_main_conf)(ngx_conf_t *cf, void *conf);
Igor Sysoevdc479b42003-03-20 16:09:44 +000027
Igor Sysoev2f657222004-06-16 15:32:11 +000028 void *(*create_srv_conf)(ngx_conf_t *cf);
29 char *(*merge_srv_conf)(ngx_conf_t *cf, void *prev, void *conf);
Igor Sysoev78329332003-11-10 17:17:31 +000030
Igor Sysoev2f657222004-06-16 15:32:11 +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 Sysoev43f13192004-04-12 16:38:09 +000038#define NGX_HTTP_MAIN_CONF 0x02000000
39#define NGX_HTTP_SRV_CONF 0x04000000
40#define NGX_HTTP_LOC_CONF 0x08000000
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 Sysoevf38e0462004-07-16 17:11:43 +000052/*
53 * ngx_http_conf_get_module_srv_conf() and ngx_http_conf_get_module_loc_conf()
Igor Sysoev562626a2004-09-14 05:45:22 +000054 * must not be used at the merge phase because cf->ctx points to http{}'s ctx
Igor Sysoevf38e0462004-07-16 17:11:43 +000055 */
Igor Sysoev1c3567e2004-07-15 16:35:51 +000056
Igor Sysoev74a5ddb2004-07-18 19:11:20 +000057#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 Sysoev1c3567e2004-07-15 16:35:51 +000064#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 Sysoevdc479b42003-03-20 16:09:44 +000067
Igor Sysoev207ed5a2002-12-26 16:26:23 +000068
Igor Sysoeve0268b92002-09-11 15:18:33 +000069
Igor Sysoev73009772003-02-06 17:21:13 +000070#endif /* _NGX_HTTP_CONFIG_H_INCLUDED_ */