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

Function dav_get_provider

modules/dav/main/mod_dav.c:215–226  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

213}
214
215DAV_DECLARE(const dav_provider *) dav_get_provider(request_rec *r)
216{
217 dav_dir_conf *conf;
218
219 conf = ap_get_module_config(r->per_dir_config, &dav_module);
220 /* assert: conf->provider_name != NULL
221 (otherwise, DAV is disabled, and we wouldn't be here) */
222
223 /* assert: conf->provider != NULL
224 (checked when conf->provider_name is set) */
225 return conf->provider;
226}
227
228DAV_DECLARE(const dav_hooks_locks *) dav_get_lock_hooks(request_rec *r)
229{

Callers 6

dav_get_lock_hooksFunction · 0.85
dav_get_propdb_hooksFunction · 0.85
dav_get_vsn_hooksFunction · 0.85
dav_get_binding_hooksFunction · 0.85
dav_get_search_hooksFunction · 0.85
mod_dav.hFile · 0.85

Calls 1

ap_get_module_configFunction · 0.85

Tested by

no test coverage detected