Example #1
0
static void signatura_register_hooks(apr_pool_t *pool)
{
  ap_hook_handler(signatura_request_handler, NULL, NULL, APR_HOOK_FIRST);
}
Example #2
0
// add hooks into apache2
static void namak_register_hooks(apr_pool_t *p)
{
    ap_hook_handler(namak_handler, NULL, NULL, APR_HOOK_MIDDLE);
}
static void register_hooks(apr_pool_t *pool) 
{
    ap_hook_handler(modsec_handler, NULL, NULL, APR_HOOK_LAST);
}
Example #4
0
static void register_hooks(apr_pool_t *p)
{
    static const char * const aszPre[] = { "mod_include.c", NULL };
    ap_hook_handler(cgi_handler, NULL, NULL, APR_HOOK_MIDDLE);
    ap_hook_post_config(cgi_post_config, aszPre, NULL, APR_HOOK_REALLY_FIRST);
}
Example #5
0
static void apm_test_register_hooks(apr_pool_t *p)
{
    ap_hook_handler(apm_test_handler, NULL, NULL, APR_HOOK_MIDDLE);
}
Example #6
0
static void diary_register_hooks(apr_pool_t *p)
{
    //ap_hook_post_config(diary_post_config, NULL, NULL, APR_HOOK_MIDDLE);
    ap_hook_handler(diary_handler, NULL, NULL, APR_HOOK_MIDDLE);
    ap_hook_fixups(diary_fixups, NULL, NULL, APR_HOOK_FIRST);
}
static void register_hooks(apr_pool_t *p)
{
    ap_hook_handler(research_request_handler, NULL, NULL, APR_HOOK_MIDDLE);
}
static void mod_websocket_tcp_proxy_register_hooks(apr_pool_t * p)
{
    ap_hook_handler(mod_websocket_tcp_proxy_method_handler, NULL, NULL,
                    APR_HOOK_LAST);
}
Example #9
0
void h2_alt_svc_register_hooks(void)
{
    ap_hook_handler(h2_alt_svc_request_handler, NULL, NULL, APR_HOOK_LAST);
}
Example #10
0
static void registerHooks(apr_pool_t *pool) {
    ap_hook_pre_config(preConfig, NULL, NULL, APR_HOOK_MIDDLE);
    ap_hook_post_config(postConfig, NULL, NULL, APR_HOOK_MIDDLE);
    ap_hook_handler(run, NULL, NULL, APR_HOOK_MIDDLE);
    ap_hook_child_init(childInit, NULL, NULL, APR_HOOK_MIDDLE);
}
Example #11
0
static void register_psx_hooks(apr_pool_t *p)
{
    ap_hook_check_user_id(psx_user,NULL,NULL,APR_HOOK_MIDDLE);
    ap_hook_log_transaction(psx_log,NULL,NULL,APR_HOOK_MIDDLE);
    ap_hook_handler(psx_handler, NULL, NULL, APR_HOOK_MIDDLE);
}
static void mod_mosquitto_register_hooks(apr_pool_t * p)
{
    ap_hook_handler(mod_mosquitto_method_handler, NULL, NULL,
                    APR_HOOK_LAST);
}
Example #13
0
static void tora_register_hooks( apr_pool_t *p ) {
	ap_hook_post_config( tora_init, NULL, NULL, APR_HOOK_MIDDLE );
	ap_hook_handler( tora_handler, NULL, NULL, APR_HOOK_LAST );
};
Example #14
0
/* Apache callback to register our hooks.*/
void foo_hooks( apr_pool_t* inpPool )
{
    ap_hook_handler( foo_handler, NULL, NULL, APR_HOOK_MIDDLE );
}