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

Function rebuild_conf_hash

server/config.c:511–524  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

509};
510
511static void rebuild_conf_hash(apr_pool_t *p, int add_prelinked)
512{
513 module **m;
514
515 ap_config_hash = apr_hash_make(p);
516
517 apr_pool_cleanup_register(p, &ap_config_hash, ap_pool_cleanup_set_null,
518 apr_pool_cleanup_null);
519 if (add_prelinked) {
520 for (m = ap_prelinked_modules; *m != NULL; m++) {
521 ap_add_module_commands(*m, p);
522 }
523 }
524}
525
526static void ap_add_module_commands(module *m, apr_pool_t *p)
527{

Callers 3

ap_add_module_commandsFunction · 0.85
process_command_configFunction · 0.85

Calls 1

ap_add_module_commandsFunction · 0.85

Tested by

no test coverage detected