| 1526 | }; |
| 1527 | |
| 1528 | static 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 | |
| 1538 | AP_DECLARE_MODULE(cache_socache) = { STANDARD20_MODULE_STUFF, |
| 1539 | create_dir_config, /* create per-directory config structure */ |
nothing calls this directly
no test coverage detected