/httpd/modules/core/test/ |
H A D | Makefile | 13 -C "Define PWD $$PWD/conf" 29 F.conf = $(wildcard conf/test*.conf) 30 F.out = $(F.conf:conf/%.conf=$(OUT)/%.out) 53 $(OUT)/%.out: conf/%.conf
|
/httpd/modules/aaa/ |
H A D | mod_allowhandlers.c | 38 ah_conf_t *conf = ap_get_module_config(r->per_dir_config, local 56 if (!conf) 58 if (conf->handlers && apr_table_get(conf->handlers, handler_name)) 61 if ((match && conf->op == AH_ALLOW) || (!match && conf->op == AH_DENY)) { 83 ah_conf_t *conf = apr_pcalloc(p, sizeof(ah_conf_t)); local 84 conf->op = AH_DENY; 85 return conf; 91 ah_conf_t* conf local [all...] |
H A D | mod_allowmethods.c | 56 am_conf_t *conf; local 58 conf = (am_conf_t *) ap_get_module_config(r->per_dir_config, 60 if (!conf || conf->allowed == 0) { 64 r->allowed = conf->allowed; 66 if (conf->allowed & (AP_METHOD_BIT << method)) { 81 am_conf_t *conf = apr_pcalloc(p, sizeof(am_conf_t)); local 83 conf->allowed = 0; 84 conf->allowed_set = 0; 85 return conf; 92 am_conf_t *conf = apr_palloc(pool, sizeof(am_conf_t)); local 110 am_conf_t *conf = (am_conf_t *)d; local [all...] |
H A D | mod_authn_file.c | 41 authn_file_config_rec *conf = apr_palloc(p, sizeof(*conf)); local 43 conf->pwfile = NULL; /* just to illustrate the default really */ 44 return conf; 60 authn_file_config_rec *conf = ap_get_module_config(r->per_dir_config, local 67 if (!conf->pwfile) { 73 status = ap_pcfg_openfile(&f, r->pool, conf->pwfile); 77 "Could not open password file: %s", conf->pwfile); 115 authn_file_config_rec *conf = ap_get_module_config(r->per_dir_config, local 122 if (!conf [all...] |
H A D | mod_authz_user.c | 36 authz_user_config_rec *conf = apr_palloc(p, sizeof(*conf)); local 38 return conf;
|
H A D | mod_authn_anon.c | 75 authn_anon_config_rec *conf = apr_palloc(p, sizeof(*conf)); local 78 conf->users = NULL; 80 conf->nouserid = 0; 81 conf->anyuserid = 0; 82 conf->logemail = 1; 83 conf->verifyemail = 0; 84 conf->mustemail = 1; 85 return conf; 91 authn_anon_config_rec *conf local 138 authn_anon_config_rec *conf = ap_get_module_config(r->per_dir_config, local [all...] |
H A D | mod_authn_dbm.c | 53 authn_dbm_config_rec *conf = apr_palloc(p, sizeof(*conf)); local 55 conf->pwfile = NULL; 56 conf->dbmtype = "default"; 58 return conf; 65 authn_dbm_config_rec *conf = dir_config; local 67 conf->dbmtype = apr_pstrdup(cmd->pool, arg); 120 authn_dbm_config_rec *conf = ap_get_module_config(r->per_dir_config, local 126 rv = fetch_dbm_value(conf->dbmtype, conf 158 authn_dbm_config_rec *conf = ap_get_module_config(r->per_dir_config, local [all...] |
H A D | mod_access_compat.c | 81 access_compat_dir_conf *conf = local 85 conf->order[i] = DENY_THEN_ALLOW; 87 conf->allows = apr_array_make(p, 1, sizeof(allowdeny)); 88 conf->denys = apr_array_make(p, 1, sizeof(allowdeny)); 89 conf->satisfy = apr_palloc(p, sizeof(*conf->satisfy) * METHODS); 91 conf->satisfy[i] = SATISFY_NOSPEC; 94 return (void *)conf; 311 access_compat_dir_conf *conf = (access_compat_dir_conf *) local 314 return conf [all...] |
H A D | mod_auth_basic.c | 50 auth_basic_config_rec *conf = apr_pcalloc(p, sizeof(*conf)); local 53 conf->authoritative = 1; 55 return conf; 90 auth_basic_config_rec *conf = (auth_basic_config_rec*)config; local 117 if (!conf->providers) { 118 conf->providers = newp; 121 authn_provider_list *last = conf->providers; 134 auth_basic_config_rec *conf = (auth_basic_config_rec *) config; local 136 conf 145 auth_basic_config_rec *conf = (auth_basic_config_rec *) config; local 186 auth_basic_config_rec *conf = (auth_basic_config_rec *)config; local 297 auth_basic_config_rec *conf = ap_get_module_config(r->per_dir_config, local 446 auth_basic_config_rec *conf = ap_get_module_config(r->per_dir_config, local [all...] |
H A D | mod_authn_core.c | 77 authn_core_dir_conf *conf = local 80 return (void *)conf; 87 authn_core_dir_conf *conf = local 91 conf->ap_auth_type = new->ap_auth_type; 92 conf->auth_type_set = 1; 95 conf->ap_auth_type = base->ap_auth_type; 96 conf->auth_type_set = base->auth_type_set; 100 conf->ap_auth_name = new->ap_auth_name; 102 conf->ap_auth_name = base->ap_auth_name; 105 return (void*)conf; 336 authn_core_dir_conf *conf; local 358 authn_core_dir_conf *conf; local [all...] |
H A D | mod_authn_dbd.c | 110 authn_dbd_conf *conf = ap_get_module_config(r->per_dir_config, local 120 if (conf->user == NULL) { 126 statement = apr_hash_get(dbd->prepared, conf->user, APR_HASH_KEY_STRING); 130 "AuthDBDUserPWQuery with the key '%s'", conf->user); 207 authn_dbd_conf *conf = ap_get_module_config(r->per_dir_config, local 216 if (conf->realm == NULL) { 221 statement = apr_hash_get(dbd->prepared, conf->realm, APR_HASH_KEY_STRING); 225 "AuthDBDUserRealmQuery with the key '%s'", conf->realm);
|
H A D | mod_authz_dbm.c | 63 authz_dbm_config_rec *conf = apr_palloc(p, sizeof(*conf)); local 65 conf->grpfile = NULL; 66 conf->dbmtype = "default"; 68 return conf; 136 authz_dbm_config_rec *conf = ap_get_module_config(r->per_dir_config, local 155 if (!conf->grpfile) { 166 user, conf->grpfile, conf->dbmtype, &groups); 171 "file: %s", conf 220 authz_dbm_config_rec *conf = ap_get_module_config(r->per_dir_config, local [all...] |
H A D | mod_authz_groupfile.c | 66 authz_groupfile_config_rec *conf = apr_palloc(p, sizeof(*conf)); local 68 conf->groupfile = NULL; 69 return conf; 138 authz_groupfile_config_rec *conf = ap_get_module_config(r->per_dir_config, local 157 if (!(conf->groupfile)) { 163 status = groups_for_user(r->pool, user, conf->groupfile, 169 conf->groupfile); 178 r->user, r->uri, conf->groupfile); 211 authz_groupfile_config_rec *conf local [all...] |
/httpd/modules/dav/fs/ |
H A D | mod_dav_fs.c | 35 dav_fs_server_conf *conf; local 37 conf = ap_get_module_config(r->server->module_config, &dav_fs_module); 38 return conf->lockdb_path; 43 dav_fs_server_conf *conf = apr_pcalloc(p, sizeof(dav_fs_server_conf)); local 45 conf->lockdb_path = DEFAULT_EXP_DAVLOCKDB; 46 if (*conf->lockdb_path == '\0') { 47 conf->lockdb_path = NULL; 51 return conf; 75 dav_fs_server_conf *conf; local 76 conf [all...] |
/httpd/modules/dav/lock/ |
H A D | mod_dav_lock.c | 36 dav_lock_dir_conf *conf; local 38 conf = ap_get_module_config(r->per_dir_config, &dav_lock_module); 39 return conf->lockdb_path; 68 dav_lock_dir_conf *conf = config; local 70 conf->lockdb_path = ap_server_root_relative(cmd->pool, arg1); 72 if (!conf->lockdb_path) {
|
/httpd/modules/filters/ |
H A D | mod_reflector.c | 49 reflector_cfg *conf; local 56 conf = (reflector_cfg *) ap_get_module_config(r->per_dir_config, 83 apr_table_do(header_do, r, conf->headers, NULL); 178 reflector_cfg *conf = apr_pcalloc(p, sizeof(reflector_cfg)); local 180 conf->headers = apr_table_make(p, 8); 182 return conf;
|
H A D | mod_buffer.c | 47 buffer_conf *conf; member in struct:buffer_ctx 76 ctx->conf = ap_get_module_config(f->r->per_dir_config, &buffer_module); 139 if (len > ctx->conf->size) { 206 ctx->conf = ap_get_module_config(f->r->per_dir_config, &buffer_module); 218 ctx->remaining = ctx->conf->size; 318 buffer_conf *conf = dconf; local 320 if (APR_SUCCESS != apr_strtoff(&(conf->size), arg, NULL, 10) || conf->size 324 conf->size_set = 1;
|
H A D | mod_request.c | 298 request_dir_conf *conf = ap_get_module_config(r->per_dir_config, local 307 else if (conf->keep_body) { 357 request_dir_conf *conf = dconf; local 360 if (APR_SUCCESS != apr_strtoff(&(conf->keep_body), arg, &end, 10) 361 || conf->keep_body < 0 || *end) { 364 conf->keep_body_set = 1;
|
/httpd/modules/mappers/ |
H A D | mod_actions.c | 151 action_dir_config *conf = (action_dir_config *) local 157 if (!conf->configured) { 165 if (conf->scripted[i]) 172 script = conf->scripted[M_GET]; 177 script = conf->scripted[r->method_number]; 188 if (action && (t = apr_table_get(conf->action_types, action))) {
|
H A D | mod_vhost_alias.c | 74 mva_sconf_t *conf; local 76 conf = (mva_sconf_t *) apr_pcalloc(p, sizeof(mva_sconf_t)); 77 conf->doc_root = NULL; 78 conf->cgi_root = NULL; 79 conf->doc_root_mode = VHOST_ALIAS_UNSET; 80 conf->cgi_root_mode = VHOST_ALIAS_UNSET; 81 return conf; 88 mva_sconf_t *conf; local 90 conf = (mva_sconf_t *) apr_pcalloc(p, sizeof(*conf)); 122 mva_sconf_t *conf; local 384 mva_sconf_t *conf; local [all...] |
/httpd/modules/metadata/ |
H A D | mod_env.c | 39 env_dir_config_rec *conf = apr_palloc(p, sizeof(*conf)); local 41 conf->vars = apr_table_make(p, 10); 42 conf->unsetenv = apr_table_make(p, 10); 44 return conf;
|
/httpd/modules/proxy/ |
H A D | mod_proxy_fdpass.c | 127 proxy_server_conf *conf, 126 proxy_fdpass_handler(request_rec *r, proxy_worker *worker, proxy_server_conf *conf, char *url, const char *proxyname, apr_port_t proxyport) argument
|
/httpd/modules/apreq/ |
H A D | filter.c | 61 struct dir_config *conf = data; local 67 conf->temp_dir = arg; 74 struct dir_config *conf = data; local 80 conf->read_limit = apreq_atoi64f(arg); 87 struct dir_config *conf = data; local 93 conf->brigade_limit = apreq_atoi64f(arg);
|
/httpd/modules/cache/ |
H A D | cache_storage.c | 432 cache_server_conf *conf; local 450 conf = (cache_server_conf *) ap_get_module_config(r->server->module_config, 472 if (conf->base_uri && conf->base_uri->hostname) { 473 hostname = conf->base_uri->hostname; 512 if (conf->base_uri && conf->base_uri->scheme) { 513 scheme = conf->base_uri->scheme; 549 if (conf->base_uri && conf [all...] |
/httpd/modules/loggers/ |
H A D | mod_logio.c | 73 logio_dirconf_t *conf = (logio_dirconf_t*) local 75 if (conf && conf->track_ttfb) {
|