aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_plugins.h
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-09-21 12:15:48 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-09-21 12:15:48 +0000
commitc67945ebea571b20777ead4663d2788ff8abb924 (patch)
tree2dd3bec42e1e3d2e61ab97338b62ebf26e867d59 /src/transport/gnunet-service-transport_plugins.h
parent23fbfdade60daf4b88cec374ccd4532d8c87324b (diff)
downloadgnunet-c67945ebea571b20777ead4663d2788ff8abb924.tar.gz
gnunet-c67945ebea571b20777ead4663d2788ff8abb924.zip
prefix based plugin lookup for transport
Diffstat (limited to 'src/transport/gnunet-service-transport_plugins.h')
-rw-r--r--src/transport/gnunet-service-transport_plugins.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/transport/gnunet-service-transport_plugins.h b/src/transport/gnunet-service-transport_plugins.h
index 04bb5ea22..97e8f4c6f 100644
--- a/src/transport/gnunet-service-transport_plugins.h
+++ b/src/transport/gnunet-service-transport_plugins.h
@@ -66,6 +66,19 @@ GST_plugins_unload (void);
66struct GNUNET_TRANSPORT_PluginFunctions * 66struct GNUNET_TRANSPORT_PluginFunctions *
67GST_plugins_find (const char *name); 67GST_plugins_find (const char *name);
68 68
69/**
70 * Obtain the plugin API based on a the stripped plugin name after the underscore.
71 *
72 * Example: GST_plugins_printer_find (http_client) will return all plugins
73 * starting with the prefix "http":
74 * http_client or server if loaded
75 *
76 * @param name name of the plugin
77 * @return the plugin's API, NULL if the plugin is not loaded
78 */
79struct GNUNET_TRANSPORT_PluginFunctions *
80GST_plugins_printer_find (const char *name);
81
69 82
70/** 83/**
71 * Convert a given address to a human-readable format. Note that the 84 * Convert a given address to a human-readable format. Note that the