MCPcopy Create free account
hub / github.com/apache/httpd / ap_register_hooks

Function ap_register_hooks

server/config.c:489–500  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

487}
488
489AP_DECLARE(void) ap_register_hooks(module *m, apr_pool_t *p)
490{
491 if (m->register_hooks) {
492 if (getenv("SHOW_HOOKS")) {
493 printf("Registering hooks for %s\n", m->name);
494 apr_hook_debug_enabled = 1;
495 }
496
497 apr_hook_debug_current = m->name;
498 m->register_hooks(p);
499 }
500}
501
502static void ap_add_module_commands(module *m, apr_pool_t *p);
503

Callers 3

ap_add_moduleFunction · 0.85
mainFunction · 0.85
http_config.hFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected