MCPcopy Create free account
hub / github.com/apache/httpd / ap_context_document_root

Function ap_context_document_root

server/core.c:848–855  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

846}
847
848AP_DECLARE(const char *) ap_context_document_root(request_rec *r)
849{
850 core_request_config *conf = ap_get_core_module_config(r->request_config);
851 if (conf->context_document_root)
852 return conf->context_document_root;
853 else
854 return ap_document_root(r);
855}
856
857AP_DECLARE(void) ap_set_document_root(request_rec *r, const char *document_root)
858{

Callers 7

prefix_statFunction · 0.85
lookup_variableFunction · 0.85
hook_fixupFunction · 0.85
ap_add_common_varsFunction · 0.85
request_var_fnFunction · 0.85
httpd.hFile · 0.85

Calls 2

ap_document_rootFunction · 0.85

Tested by

no test coverage detected