|
19 | 19 | * |
20 | 20 | * Original source by Mark Cox, mark@ukweb.com, November 1995 |
21 | 21 | * V1.0 by Mathieu CARBONNEAUX, 06/08/2010, Full Text fork for only machine automatique parsing |
22 | | - * V1.1 by Mathieu CARBONNEAUX, 22/10/2010, Full Text fork for only machine automatique parsing + runtime log statistique |
| 22 | + * V1.1 by Mathieu CARBONNEAUX, 22/10/2010, add realtime log statistique |
| 23 | + * V1.2 by Mathieu CARBONNEAUX, 27/10/2013, add httpd 2.4 support |
23 | 24 | */ |
24 | 25 |
|
25 | 26 | #define CORE_PRIVATE |
@@ -1407,10 +1408,11 @@ int status_text_create_scoreboard(apr_pool_t *p, ap_scoreboard_e sb_type) |
1407 | 1408 |
|
1408 | 1409 | static void register_hooks(apr_pool_t *p) |
1409 | 1410 | { |
1410 | | - static const char * const aszPre[]={ "mod_status.c",NULL }; |
| 1411 | + //static const char * const aszPre[]={ "mod_status.c",NULL }; |
1411 | 1412 | ap_hook_log_transaction(runtime_statistique,NULL,NULL,APR_HOOK_MIDDLE); |
1412 | 1413 | ap_hook_handler(status_text_handler, NULL, NULL, APR_HOOK_MIDDLE); |
1413 | | - ap_hook_post_config(status_text_init, aszPre, NULL, APR_HOOK_MIDDLE); |
| 1414 | + //ap_hook_post_config(status_text_init, aszPre, NULL, APR_HOOK_MIDDLE); |
| 1415 | + ap_hook_post_config(status_text_init, NULL, NULL, APR_HOOK_MIDDLE); |
1414 | 1416 | ap_hook_child_init(status_text_child_init, NULL, NULL, APR_HOOK_MIDDLE); |
1415 | 1417 | ap_hook_pre_mpm(status_text_create_scoreboard, NULL, NULL, APR_HOOK_MIDDLE); |
1416 | 1418 | } |
|
0 commit comments