From c4e9ba925ffd758aaa3feee2ccfc0b76f26fe207 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sat, 5 Oct 2019 15:09:28 +0200 Subject: global reindent, now with uncrustify hook enabled --- src/peerinfo-tool/gnunet-peerinfo_plugins.c | 111 ++++++++++++++-------------- 1 file changed, 56 insertions(+), 55 deletions(-) (limited to 'src/peerinfo-tool/gnunet-peerinfo_plugins.c') diff --git a/src/peerinfo-tool/gnunet-peerinfo_plugins.c b/src/peerinfo-tool/gnunet-peerinfo_plugins.c index 13730629e..9449dd67e 100644 --- a/src/peerinfo-tool/gnunet-peerinfo_plugins.c +++ b/src/peerinfo-tool/gnunet-peerinfo_plugins.c @@ -31,7 +31,8 @@ /** * Entry in doubly-linked list of all of our plugins. */ -struct TransportPlugin { +struct TransportPlugin +{ /** * This is a doubly-linked list. */ @@ -86,7 +87,7 @@ static struct TransportPlugin *plugins_tail; * @param cfg configuration to use */ void -GPI_plugins_load(const struct GNUNET_CONFIGURATION_Handle *cfg) +GPI_plugins_load (const struct GNUNET_CONFIGURATION_Handle *cfg) { struct TransportPlugin *plug; struct TransportPlugin *next; @@ -97,41 +98,41 @@ GPI_plugins_load(const struct GNUNET_CONFIGURATION_Handle *cfg) if (NULL != plugins_head) return; /* already loaded */ if (GNUNET_OK != - GNUNET_CONFIGURATION_get_value_string(cfg, "TRANSPORT", "PLUGINS", - &plugs)) + GNUNET_CONFIGURATION_get_value_string (cfg, "TRANSPORT", "PLUGINS", + &plugs)) return; - GNUNET_log(GNUNET_ERROR_TYPE_INFO, _("Starting transport plugins `%s'\n"), - plugs); - for (pos = strtok(plugs, " "); pos != NULL; pos = strtok(NULL, " ")) - { - GNUNET_log(GNUNET_ERROR_TYPE_INFO, _("Loading `%s' transport plugin\n"), - pos); - GNUNET_asprintf(&libname, "libgnunet_plugin_transport_%s", pos); - plug = GNUNET_new(struct TransportPlugin); - plug->short_name = GNUNET_strdup(pos); - plug->lib_name = libname; - plug->env.cfg = cfg; - plug->env.cls = plug->short_name; - GNUNET_CONTAINER_DLL_insert(plugins_head, plugins_tail, plug); - } - GNUNET_free(plugs); + GNUNET_log (GNUNET_ERROR_TYPE_INFO, _ ("Starting transport plugins `%s'\n"), + plugs); + for (pos = strtok (plugs, " "); pos != NULL; pos = strtok (NULL, " ")) + { + GNUNET_log (GNUNET_ERROR_TYPE_INFO, _ ("Loading `%s' transport plugin\n"), + pos); + GNUNET_asprintf (&libname, "libgnunet_plugin_transport_%s", pos); + plug = GNUNET_new (struct TransportPlugin); + plug->short_name = GNUNET_strdup (pos); + plug->lib_name = libname; + plug->env.cfg = cfg; + plug->env.cls = plug->short_name; + GNUNET_CONTAINER_DLL_insert (plugins_head, plugins_tail, plug); + } + GNUNET_free (plugs); next = plugins_head; while (next != NULL) + { + plug = next; + next = plug->next; + plug->api = GNUNET_PLUGIN_load (plug->lib_name, &plug->env); + if (plug->api == NULL) { - plug = next; - next = plug->next; - plug->api = GNUNET_PLUGIN_load(plug->lib_name, &plug->env); - if (plug->api == NULL) - { - GNUNET_log(GNUNET_ERROR_TYPE_ERROR, - _("Failed to load transport plugin for `%s'\n"), - plug->lib_name); - GNUNET_CONTAINER_DLL_remove(plugins_head, plugins_tail, plug); - GNUNET_free(plug->short_name); - GNUNET_free(plug->lib_name); - GNUNET_free(plug); - } + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + _ ("Failed to load transport plugin for `%s'\n"), + plug->lib_name); + GNUNET_CONTAINER_DLL_remove (plugins_head, plugins_tail, plug); + GNUNET_free (plug->short_name); + GNUNET_free (plug->lib_name); + GNUNET_free (plug); } + } } @@ -139,18 +140,18 @@ GPI_plugins_load(const struct GNUNET_CONFIGURATION_Handle *cfg) * Unload all plugins */ void -GPI_plugins_unload() +GPI_plugins_unload () { struct TransportPlugin *plug; while (NULL != (plug = plugins_head)) - { - GNUNET_break(NULL == GNUNET_PLUGIN_unload(plug->lib_name, plug->api)); - GNUNET_free(plug->lib_name); - GNUNET_free(plug->short_name); - GNUNET_CONTAINER_DLL_remove(plugins_head, plugins_tail, plug); - GNUNET_free(plug); - } + { + GNUNET_break (NULL == GNUNET_PLUGIN_unload (plug->lib_name, plug->api)); + GNUNET_free (plug->lib_name); + GNUNET_free (plug->short_name); + GNUNET_CONTAINER_DLL_remove (plugins_head, plugins_tail, plug); + GNUNET_free (plug); + } } @@ -161,32 +162,32 @@ GPI_plugins_unload() * @return the plugin's API, NULL if the plugin is not loaded */ struct GNUNET_TRANSPORT_PluginFunctions * -GPI_plugins_find(const char *name) +GPI_plugins_find (const char *name) { struct TransportPlugin *head = plugins_head; - char *stripped = GNUNET_strdup(name); + char *stripped = GNUNET_strdup (name); char *head_stripped; - char *sep = strchr(stripped, '_'); + char *sep = strchr (stripped, '_'); if (NULL != sep) sep[0] = '\0'; while (head != NULL) + { + head_stripped = GNUNET_strdup (head->short_name); + char *head_sep = strchr (head_stripped, '_'); + if (NULL != head_sep) + head_sep[0] = '\0'; + if (0 == strcmp (head_stripped, stripped)) { - head_stripped = GNUNET_strdup(head->short_name); - char *head_sep = strchr(head_stripped, '_'); - if (NULL != head_sep) - head_sep[0] = '\0'; - if (0 == strcmp(head_stripped, stripped)) - { - GNUNET_free(head_stripped); - break; - } - GNUNET_free(head_stripped); - head = head->next; + GNUNET_free (head_stripped); + break; } - GNUNET_free(stripped); + GNUNET_free (head_stripped); + head = head->next; + } + GNUNET_free (stripped); if (NULL == head) return NULL; return head->api; -- cgit v1.2.3