| 556 | } |
| 557 | |
| 558 | static const char *md_config_set_agreement(cmd_parms *cmd, void *dc, const char *value) |
| 559 | { |
| 560 | md_srv_conf_t *config = md_config_get(cmd->server); |
| 561 | const char *err; |
| 562 | |
| 563 | (void)dc; |
| 564 | if ((err = md_conf_check_location(cmd, MD_LOC_ALL))) { |
| 565 | return err; |
| 566 | } |
| 567 | config->ca_agreement = value; |
| 568 | return NULL; |
| 569 | } |
| 570 | |
| 571 | static const char *md_config_set_renew_mode(cmd_parms *cmd, void *dc, const char *value) |
| 572 | { |
nothing calls this directly
no test coverage detected