X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/8d14d66b84cc370cefe54b33de1b95bb49c90bf6..7f88fa1553a361d5d70a87eeeb7a37e1f3476cc8:/onak-conf.c diff --git a/onak-conf.c b/onak-conf.c index 70990f8..5f07e02 100644 --- a/onak-conf.c +++ b/onak-conf.c @@ -33,6 +33,8 @@ struct onak_config config = { NULL, /* syncsites */ NULL, /* logfile */ + false, /* use_keyd */ + /* * Options for directory backends. */ @@ -55,6 +57,24 @@ struct onak_config config = { &DBFUNCS, /* Default dbfuncs struct */ }; +bool parsebool(char *str, bool fallback) +{ + if (!strcasecmp(str, "false") || !strcasecmp(str, "no") || + !strcasecmp(str, "0")) { + return false; + } else if (!strcasecmp(str, "true") || !strcasecmp(str, "yes") || + !strcasecmp(str, "1")) { + return true; + } else { + logthing(LOGTHING_CRITICAL, + "Couldn't parse %s as a boolean config variable, " + "returning fallback of '%s'.", + str, + fallback ? "true" : "false"); + return fallback; + } +} + void readconfig(const char *configfile) { FILE *conffile; char curline[1024]; @@ -141,6 +161,9 @@ void readconfig(const char *configfile) { config.db_backend = strdup(&curline[11]); } else if (!strncmp("backends_dir ", curline, 13)) { config.backends_dir = strdup(&curline[13]); + } else if (!strncmp("use_keyd ", curline, 9)) { + config.use_keyd = parsebool(&curline[9], + config.use_keyd); } else { logthing(LOGTHING_ERROR, "Unknown config line: %s", curline);