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

Function md_config_set_profile_mandatory

modules/md/mod_md_config.c:611–621  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

609}
610
611static const char *md_config_set_profile_mandatory(cmd_parms *cmd, void *dc, const char *value)
612{
613 md_srv_conf_t *config = md_config_get(cmd->server);
614 const char *err;
615
616 (void)dc;
617 if ((err = md_conf_check_location(cmd, MD_LOC_ALL))) {
618 return err;
619 }
620 return set_on_off(&config->profile_mandatory, value, cmd->pool);
621}
622
623static const char *md_config_set_must_staple(cmd_parms *cmd, void *dc, const char *value)
624{

Callers

nothing calls this directly

Calls 3

md_config_getFunction · 0.85
md_conf_check_locationFunction · 0.85
set_on_offFunction · 0.85

Tested by

no test coverage detected