| 543 | } |
| 544 | |
| 545 | static 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 | |
| 558 | static const char *md_config_set_agreement(cmd_parms *cmd, void *dc, const char *value) |
| 559 | { |
nothing calls this directly
no test coverage detected