From: Thomas Klute Date: Fri, 4 Jan 2013 12:47:15 +0000 (+0100) Subject: conftest: Add support for time_format and ike_name options in log sections X-Git-Tag: 5.0.2dr4~23 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=13c177852fd8fea5bd94e3cba3119443c8497f2e;p=thirdparty%2Fstrongswan.git conftest: Add support for time_format and ike_name options in log sections Both options are well supported for normal operation but were completely ignored by conftest, which used hard coded defaults. File options are still missing but could be added in a similar way. --- diff --git a/src/conftest/conftest.c b/src/conftest/conftest.c index e8c257d5e0..c2251effa1 100644 --- a/src/conftest/conftest.c +++ b/src/conftest/conftest.c @@ -377,6 +377,22 @@ static void load_log_levels(file_logger_t *logger, char *section) } } +/** + * Load logger options for a logger from section + */ +static void load_logger_options(file_logger_t *logger, char *section) +{ + bool ike_name; + char *time_format; + + time_format = conftest->test->get_str(conftest->test, + "log.%s.time_format", NULL, section); + ike_name = conftest->test->get_bool(conftest->test, + "log.%s.ike_name", FALSE, section); + + logger->set_options(logger, time_format, ike_name); +} + /** * Load logger configuration */ @@ -386,6 +402,7 @@ static void load_loggers(file_logger_t *logger) char *section; load_log_levels(logger, "stdout"); + load_logger_options(logger, "stdout"); /* Re-add the logger to propagate configuration changes to the * logging system */ charon->bus->add_logger(charon->bus, &logger->logger); @@ -396,7 +413,7 @@ static void load_loggers(file_logger_t *logger) if (!streq(section, "stdout")) { logger = file_logger_create(section); - logger->set_options(logger, NULL, FALSE); + load_logger_options(logger, section); logger->open(logger, FALSE, FALSE); load_log_levels(logger, section); charon->bus->add_logger(charon->bus, &logger->logger);