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

Function md_config_set_profile

modules/md/mod_md_config.c:598–609  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

596}
597
598static const char *md_config_set_profile(cmd_parms *cmd, void *dc, const char *value)
599{
600 md_srv_conf_t *config = md_config_get(cmd->server);
601 const char *err;
602
603 (void)dc;
604 if ((err = md_conf_check_location(cmd, MD_LOC_ALL))) {
605 return err;
606 }
607 config->profile = value;
608 return NULL;
609}
610
611static const char *md_config_set_profile_mandatory(cmd_parms *cmd, void *dc, const char *value)
612{

Callers

nothing calls this directly

Calls 2

md_config_getFunction · 0.85
md_conf_check_locationFunction · 0.85

Tested by

no test coverage detected