Lines Matching defs:conf
38 ah_conf_t *conf = ap_get_module_config(r->per_dir_config,
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));
84 conf->op = AH_DENY;
85 return conf;
91 ah_conf_t* conf = (ah_conf_t*) d;
97 conf->op = AH_ALLOW;
98 if (conf->handlers)
99 apr_table_clear(conf->handlers);
101 if (strcasecmp(argv[i], forbidden_handler) == 0 && conf->op != AH_DENY)
106 conf->op = AH_DENY;
112 conf->op = AH_DENY;
115 if (!conf->handlers)
116 conf->handlers = apr_table_make(cmd->pool, 4);
117 apr_table_setn(conf->handlers, argv[i], "1");