Lines 3597-3603
static void event_hooks(apr_pool_t * p)
Link Here
|
3597 |
ap_hook_post_config(event_post_config, NULL, NULL, APR_HOOK_MIDDLE); |
3597 |
ap_hook_post_config(event_post_config, NULL, NULL, APR_HOOK_MIDDLE); |
3598 |
ap_hook_check_config(event_check_config, NULL, NULL, APR_HOOK_MIDDLE); |
3598 |
ap_hook_check_config(event_check_config, NULL, NULL, APR_HOOK_MIDDLE); |
3599 |
ap_hook_mpm(event_run, NULL, NULL, APR_HOOK_MIDDLE); |
3599 |
ap_hook_mpm(event_run, NULL, NULL, APR_HOOK_MIDDLE); |
3600 |
ap_hook_mpm_query(event_query, NULL, NULL, APR_HOOK_MIDDLE); |
3600 |
ap_unixd_hook_mpm_query(p, event_query); |
3601 |
ap_hook_mpm_register_timed_callback(event_register_timed_callback, NULL, NULL, |
3601 |
ap_hook_mpm_register_timed_callback(event_register_timed_callback, NULL, NULL, |
3602 |
APR_HOOK_MIDDLE); |
3602 |
APR_HOOK_MIDDLE); |
3603 |
ap_hook_pre_read_request(event_pre_read_request, NULL, NULL, APR_HOOK_MIDDLE); |
3603 |
ap_hook_pre_read_request(event_pre_read_request, NULL, NULL, APR_HOOK_MIDDLE); |