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

Function cache_socache_register_hook

modules/cache/mod_cache_socache.c:1528–1536  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1526};
1527
1528static void cache_socache_register_hook(apr_pool_t *p)
1529{
1530 /* cache initializer */
1531 ap_register_provider(p, CACHE_PROVIDER_GROUP, "socache", "0",
1532 &cache_socache_provider);
1533 ap_hook_pre_config(socache_precfg, NULL, NULL, APR_HOOK_MIDDLE);
1534 ap_hook_post_config(socache_post_config, NULL, NULL, APR_HOOK_MIDDLE);
1535 ap_hook_child_init(socache_child_init, NULL, NULL, APR_HOOK_MIDDLE);
1536}
1537
1538AP_DECLARE_MODULE(cache_socache) = { STANDARD20_MODULE_STUFF,
1539 create_dir_config, /* create per-directory config structure */

Callers

nothing calls this directly

Calls 1

ap_register_providerFunction · 0.85

Tested by

no test coverage detected