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

Function cache_use_early_url

modules/cache/cache_util.c:130–144  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

128}
129
130int cache_use_early_url(request_rec *r)
131{
132 cache_server_conf *conf;
133
134 if (r->proxyreq == PROXYREQ_PROXY) {
135 return 1;
136 }
137
138 conf = ap_get_module_config(r->server->module_config, &cache_module);
139 if (conf->quick) {
140 return 1;
141 }
142
143 return 0;
144}
145
146static cache_provider_list *get_provider(request_rec *r, struct cache_enable *ent,
147 cache_provider_list *providers)

Callers 3

cache_get_providersFunction · 0.85
cache_save_filterFunction · 0.85

Calls 1

ap_get_module_configFunction · 0.85

Tested by

no test coverage detected