stuff
[oweals/gnunet.git] / src / transport / gnunet-service-transport_plugins.h
1 /*
2      This file is part of GNUnet.
3      (C) 2010,2011 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file transport/gnunet-service-transport_plugins.h
23  * @brief plugin management API
24  * @author Christian Grothoff
25  */
26 #ifndef GNUNET_SERVICE_TRANSPORT_PLUGINS_H
27 #define GNUNET_SERVICE_TRANSPORT_PLUGINS_H
28
29 #include "gnunet_statistics_service.h"
30 #include "gnunet_transport_service.h"
31 #include "gnunet_transport_plugin.h"
32 #include "gnunet_util_lib.h"
33
34
35 /**
36  * Load and initialize all plugins.  The respective functions will be
37  * invoked by the plugins when the respective events happen.  The
38  * closure will be set to a 'const char*' containing the name of the
39  * plugin that caused the call.
40  *
41  * @param recv_cb function to call when data is received
42  * @param address_cb function to call when our public addresses changed
43  * @param traffic_cb function to call for flow control
44  * @param session_end_cb function to call when a session was terminated
45  * @param cost_cb function to call about ATS cost changes
46  */
47 void 
48 GST_plugins_load (GNUNET_TRANSPORT_PluginReceiveCallback recv_cb,
49                   GNUNET_TRANSPORT_AddressNotification address_cb,
50                   GNUNET_TRANSPORT_TrafficReport traffic_cb,
51                   GNUNET_TRANSPORT_SessionEnd session_end_cb,
52                   GNUNET_TRANSPORT_CostReport cost_cb);
53
54
55 /**
56  * Unload all plugins
57  */
58 void
59 GST_plugins_unload (void);
60
61
62 /**
63  * Obtain the plugin API based on a plugin name.
64  *
65  * @param name name of the plugin
66  * @return the plugin's API, NULL if the plugin is not loaded
67  */
68 struct GNUNET_TRANSPORT_PluginFunctions *
69 GST_plugins_find (const char *name);
70
71
72 /**
73  * Convert a given address to a human-readable format.  Note that the
74  * return value will be overwritten on the next call to this function.
75  * 
76  * @param name plugin name
77  * @param addr binary address in plugin-specific format
78  * @param addrlen number of bytes in 'addr'
79  * @return statically allocated (!) human-readable address
80  */
81 const char *
82 GST_plugins_a2s (const char *name,
83                  const void *addr,
84                  size_t addrlen);
85
86
87 #endif
88 /* end of file gnunet-service-transport_plugins.h */