| 128 | } |
| 129 | |
| 130 | int 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 | |
| 146 | static cache_provider_list *get_provider(request_rec *r, struct cache_enable *ent, |
| 147 | cache_provider_list *providers) |
no test coverage detected