| 1324 | } |
| 1325 | |
| 1326 | static void fcgi_register_hooks(apr_pool_t *p) |
| 1327 | { |
| 1328 | static const char * const auth_basic_runs_after_me[] = |
| 1329 | {"mod_auth_basic.c", NULL}; /* to allow for custom response */ |
| 1330 | |
| 1331 | ap_hook_pre_config(fcgi_pre_config, NULL, NULL, APR_HOOK_MIDDLE); |
| 1332 | ap_hook_check_authn(fcgi_check_authn, NULL, auth_basic_runs_after_me, |
| 1333 | APR_HOOK_MIDDLE, AP_AUTH_INTERNAL_PER_CONF); |
| 1334 | } |
| 1335 | |
| 1336 | static void *create_dir_conf(apr_pool_t *p, char *dummy) |
| 1337 | { |
nothing calls this directly
no test coverage detected