Searched refs:rconf (Results 1 - 5 of 5) sorted by relevance
/httpd/modules/proxy/ |
H A D | mod_proxy_fcgi.c | 39 fcgi_req_config_t *rconf = NULL; local 86 rconf = ap_get_module_config(r->request_config, &proxy_fcgi_module); 87 if (rconf == NULL) { 88 rconf = apr_pcalloc(r->pool, sizeof(fcgi_req_config_t)); 89 ap_set_module_config(r->request_config, &proxy_fcgi_module, rconf); 95 rconf->need_dirwalk = 1; 257 fcgi_req_config_t *rconf = ap_get_module_config(r->request_config, &proxy_fcgi_module); local 259 if (rconf) { 260 if (rconf->need_dirwalk) {
|
H A D | proxy_util.c | 842 proxy_req_conf *rconf; local 858 rconf = ap_get_module_config(r->request_config, &proxy_module); 859 ent = (struct proxy_alias *)rconf->raliases->elts; 956 proxy_req_conf *rconf = ap_get_module_config(r->request_config, local 987 ent = (struct proxy_alias *)rconf->cookie_paths->elts; 1009 ent = (struct proxy_alias *)rconf->cookie_domains->elts;
|
H A D | mod_proxy.c | 866 proxy_req_conf *rconf = apr_palloc(r->pool, sizeof(proxy_req_conf)); local 867 ap_set_module_config(r->request_config, &proxy_module, rconf); 868 rconf->raliases = proxy_vars(r, dconf->raliases); 869 rconf->cookie_paths = proxy_vars(r, dconf->cookie_paths); 870 rconf->cookie_domains = proxy_vars(r, dconf->cookie_domains);
|
/httpd/modules/generators/ |
H A D | mod_cgid.c | 418 void **rconf; local 435 rconf = (void **)ap_create_request_config(r->pool); 438 rconf[AP_CORE_MODULE_INDEX] = (void *)temp_core; 439 r->request_config = (ap_conf_vector_t *)rconf;
|
/httpd/server/ |
H A D | core.c | 776 core_request_config *rconf = ap_get_core_module_config(r->request_config); local 777 if (rconf->document_root) 778 return rconf->document_root;
|
Completed in 60 milliseconds