| 530 | } |
| 531 | |
| 532 | static const char *md_config_set_contact(cmd_parms *cmd, void *dc, const char *value) |
| 533 | { |
| 534 | md_srv_conf_t *sc = md_config_get(cmd->server); |
| 535 | const char *err; |
| 536 | |
| 537 | (void)dc; |
| 538 | if ((err = md_conf_check_location(cmd, MD_LOC_ALL))) { |
| 539 | return err; |
| 540 | } |
| 541 | sc->ca_contact = value; |
| 542 | return NULL; |
| 543 | } |
| 544 | |
| 545 | static const char *md_config_set_ca_proto(cmd_parms *cmd, void *dc, const char *value) |
| 546 | { |
nothing calls this directly
no test coverage detected