exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit cd0b9e8e0ab31f5697b6dfc04d85eeae7bef15b1
parent 4b4a851ab5633543ab567580d9bc656ae0c7b0e7
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Sun, 10 Feb 2019 18:35:05 +0100

load wire plugin

Diffstat:
Msrc/exchange-tools/taler-wire.c | 22+++++++++++++++++++---
1 file changed, 19 insertions(+), 3 deletions(-)

diff --git a/src/exchange-tools/taler-wire.c b/src/exchange-tools/taler-wire.c @@ -27,17 +27,23 @@ #include <platform.h> #include <gnunet/gnunet_util_lib.h> #include <taler/taler_util.h> +#include <taler/taler_wire_lib.h> /** * 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 };