From cd0b9e8e0ab31f5697b6dfc04d85eeae7bef15b1 Mon Sep 17 00:00:00 2001 From: Marcello Stanisci Date: Sun, 10 Feb 2019 18:35:05 +0100 Subject: load wire plugin --- src/exchange-tools/taler-wire.c | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) (limited to 'src/exchange-tools/taler-wire.c') diff --git a/src/exchange-tools/taler-wire.c b/src/exchange-tools/taler-wire.c index e49a0aed0..3c5550212 100644 --- a/src/exchange-tools/taler-wire.c +++ b/src/exchange-tools/taler-wire.c @@ -27,17 +27,23 @@ #include #include #include +#include /** * Plugin name specified by the user. */ -char *plugin; +char *plugin_name; /** * Global return code. */ unsigned int global_ret; +/** + * Wire plugin handle. + */ +struct TALER_WIRE_Plugin *plugin_handle; + /** * Main function that will be run. @@ -54,13 +60,23 @@ run (void *cls, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg) { - if (NULL == plugin) + if (NULL == plugin_name) { global_ret = 1; GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "The PLUGIN command line option is mandatory.\n"); return; } + + plugin_handle = TALER_WIRE_plugin_load (cfg, + plugin_name); + if (NULL == plugin_handle) + { + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + "Could not load the wire plugin\n"); + global_ret = 1; + return; + } } /** @@ -83,7 +99,7 @@ main (int argc, "plugin", "PLUGIN", "Wire plugin to use", - &plugin), + &plugin_name), GNUNET_GETOPT_OPTION_END }; -- cgit v1.2.3