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

Function authz_core_check_config

modules/aaa/mod_authz_core.c:664–680  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

662}
663
664static int authz_core_check_config(apr_pool_t *p, apr_pool_t *plog,
665 apr_pool_t *ptemp, server_rec *s)
666{
667 authz_core_dir_conf *conf = authz_core_first_dir_conf;
668
669 while (conf) {
670 if (conf->section) {
671 if (authz_core_check_section(p, s, conf->section, 1) != OK) {
672 return !OK;
673 }
674 }
675
676 conf = conf->next;
677 }
678
679 return OK;
680}
681
682static const command_rec authz_cmds[] =
683{

Callers

nothing calls this directly

Calls 1

authz_core_check_sectionFunction · 0.85

Tested by

no test coverage detected