| 669 | } |
| 670 | |
| 671 | static const char *md_config_set_base_server(cmd_parms *cmd, void *dc, const char *value) |
| 672 | { |
| 673 | md_srv_conf_t *config = md_config_get(cmd->server); |
| 674 | const char *err = md_conf_check_location(cmd, MD_LOC_NOT_MD); |
| 675 | |
| 676 | (void)dc; |
| 677 | if (err) return err; |
| 678 | return set_on_off(&config->mc->manage_base_server, value, cmd->pool); |
| 679 | } |
| 680 | |
| 681 | static const char *md_config_set_initial_delay(cmd_parms *cmd, void *dc, const char *value) |
| 682 | { |
nothing calls this directly
no test coverage detected