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

Function md_config_set_ca_proto

modules/md/mod_md_config.c:545–556  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

543}
544
545static const char *md_config_set_ca_proto(cmd_parms *cmd, void *dc, const char *value)
546{
547 md_srv_conf_t *config = md_config_get(cmd->server);
548 const char *err;
549
550 (void)dc;
551 if ((err = md_conf_check_location(cmd, MD_LOC_ALL))) {
552 return err;
553 }
554 config->ca_proto = value;
555 return NULL;
556}
557
558static const char *md_config_set_agreement(cmd_parms *cmd, void *dc, const char *value)
559{

Callers

nothing calls this directly

Calls 2

md_config_getFunction · 0.85
md_conf_check_locationFunction · 0.85

Tested by

no test coverage detected