From 47be1a48f383fc4b84a1b9369a62468dabb4bfba Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Mon, 26 Jan 2015 19:03:03 +0000 Subject: patches from Hellekin to fix #3577 --- src/util/gnunet-config.c | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) (limited to 'src/util') diff --git a/src/util/gnunet-config.c b/src/util/gnunet-config.c index 1d204dd07..f0acf11e4 100644 --- a/src/util/gnunet-config.c +++ b/src/util/gnunet-config.c @@ -47,6 +47,11 @@ static char *value; */ static int is_filename; +/** + * Whether to show the sections. + */ +static int list_sections; + /** * Return value from 'main'. */ @@ -71,6 +76,20 @@ print_option (void *cls, const char *section, } +/** + * Print out given section name. + * + * @param cls unused + * @param section a section in the configuration file + */ +static void +print_section_name (void *cls, + const char *section) +{ + fprintf (stdout, "%s\n", section); +} + + /** * Main function that will be run by the scheduler. * @@ -85,9 +104,14 @@ run (void *cls, char *const *args, const char *cfgfile, { struct GNUNET_CONFIGURATION_Handle *out; - if (NULL == section) + if (NULL == section || list_sections) { - fprintf (stderr, _("--section argument is required\n")); + if (! list_sections) + { + fprintf (stderr, _("--section argument is required\n")); + } + fprintf (stderr, _("The following sections are available:\n")); + GNUNET_CONFIGURATION_iterate_sections (cfg, &print_section_name, NULL); ret = 1; return; } @@ -168,6 +192,9 @@ main (int argc, char *const *argv) { 'V', "value", "VALUE", gettext_noop ("value to set"), 1, &GNUNET_GETOPT_set_string, &value }, + { 'S', "list-sections", NULL, + gettext_noop ("print available configuration sections"), + 0, &GNUNET_GETOPT_set_one, &list_sections }, GNUNET_GETOPT_OPTION_END }; if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv)) -- cgit v1.2.3