| 5173 | } |
| 5174 | |
| 5175 | static void register_hooks(apr_pool_t *p) |
| 5176 | { |
| 5177 | ap_hook_handler(dav_handler, NULL, NULL, APR_HOOK_MIDDLE); |
| 5178 | ap_hook_post_config(dav_init_handler, NULL, NULL, APR_HOOK_MIDDLE); |
| 5179 | ap_hook_fixups(dav_fixups, NULL, NULL, APR_HOOK_MIDDLE); |
| 5180 | |
| 5181 | dav_hook_find_liveprop(dav_core_find_liveprop, NULL, NULL, APR_HOOK_LAST); |
| 5182 | dav_hook_insert_all_liveprops(dav_core_insert_all_liveprops, |
| 5183 | NULL, NULL, APR_HOOK_MIDDLE); |
| 5184 | |
| 5185 | dav_hook_deliver_report(dav_core_deliver_report, |
| 5186 | NULL, NULL, APR_HOOK_LAST); |
| 5187 | dav_hook_gather_reports(dav_core_gather_reports, |
| 5188 | NULL, NULL, APR_HOOK_LAST); |
| 5189 | |
| 5190 | dav_core_register_uris(p); |
| 5191 | } |
| 5192 | |
| 5193 | /*--------------------------------------------------------------------------- |
| 5194 | * |
nothing calls this directly
no test coverage detected