document options provided
[oweals/gnunet.git] / src / ats / gnunet-service-ats_scheduling.h
1 /*
2      This file is part of GNUnet.
3      (C) 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 ats/gnunet-service-ats_scheduling.h
23  * @brief ats service, interaction with 'scheduling' API
24  * @author Matthias Wachs
25  * @author Christian Grothoff
26  */
27 #ifndef GNUNET_SERVICE_ATS_SCHEDULING_H
28 #define GNUNET_SERVICE_ATS_SCHEDULING_H
29
30 #include "gnunet_util_lib.h"
31
32
33 /**
34  * Register a new scheduling client.
35  *
36  * @param client handle of the new client
37  * @return GNUNET_OK on success, GNUNET_SYSERR on error
38  */
39 int
40 GAS_scheduling_add_client (struct GNUNET_SERVER_Client *client);
41
42
43 /**
44  * Unregister a client (which may have been a scheduling client,
45  * but this is not assured).
46  *
47  * @param client handle of the (now dead) client
48  */
49 void
50 GAS_scheduling_remove_client (struct GNUNET_SERVER_Client *client);
51
52
53 /**
54  * Handle 'reset backoff' messages from clients.
55  *
56  * @param cls unused, NULL
57  * @param client client that sent the request
58  * @param message the request message
59  */
60 void
61 GAS_handle_reset_backoff (void *cls,
62                           struct GNUNET_SERVER_Client *client,
63                           const struct GNUNET_MessageHeader *message);
64
65
66 /**
67  * Transmit the given address suggestion and bandwidth update to all scheduling
68  * clients.
69  *
70  * @param peer peer for which this is an address suggestion
71  * @param plugin_name 0-termintated string specifying the transport plugin
72  * @param plugin_addr binary address for the plugin to use
73  * @param plugin_addr_len number of bytes in plugin_addr
74  * @param session_id session ID to use
75  * @param atsi performance data for the address
76  * @param atsi_count number of performance records in 'ats'
77  * @param bandwidth_out assigned outbound bandwidth
78  * @param bandwidth_in assigned inbound bandwidth
79  */
80 void
81 GAS_scheduling_transmit_address_suggestion (const struct GNUNET_PeerIdentity
82                                             *peer, const char *plugin_name,
83                                             const void *plugin_addr,
84                                             size_t plugin_addr_len,
85                                             uint32_t session_id,
86                                             const struct GNUNET_ATS_Information
87                                             *atsi, uint32_t atsi_count,
88                                             struct GNUNET_BANDWIDTH_Value32NBO
89                                             bandwidth_out,
90                                             struct GNUNET_BANDWIDTH_Value32NBO
91                                             bandwidth_in);
92
93
94 /**
95  * Handle 'request address' messages from clients.
96  *
97  * @param cls unused, NULL
98  * @param client client that sent the request
99  * @param message the request message
100  */
101 void
102 GAS_handle_request_address (void *cls, struct GNUNET_SERVER_Client *client,
103                             const struct GNUNET_MessageHeader *message);
104
105
106 /**
107  * Cancel 'request address' messages from clients.
108  *
109  * @param cls unused, NULL
110  * @param client client that sent the request
111  * @param message the request message
112  */
113 void
114 GAS_handle_request_address_cancel (void *cls,
115                                    struct GNUNET_SERVER_Client *client,
116                                    const struct GNUNET_MessageHeader *message);
117
118
119 /**
120  * Handle 'address add' messages from clients.
121  *
122  * @param cls unused, NULL
123  * @param client client that sent the request
124  * @param message the request message
125  */
126 void
127 GAS_handle_address_add (void *cls, struct GNUNET_SERVER_Client *client,
128                         const struct GNUNET_MessageHeader *message);
129
130 /**
131  * Handle 'address update' messages from clients.
132  *
133  * @param cls unused, NULL
134  * @param client client that sent the request
135  * @param message the request message
136  */
137 void
138 GAS_handle_address_update (void *cls, struct GNUNET_SERVER_Client *client,
139                            const struct GNUNET_MessageHeader *message);
140
141
142 /**
143  * Handle 'address in use' messages from clients.
144  *
145  * @param cls unused, NULL
146  * @param client client that sent the request
147  * @param message the request message
148  */
149 void
150 GAS_handle_address_in_use (void *cls, struct GNUNET_SERVER_Client *client,
151                            const struct GNUNET_MessageHeader *message);
152
153
154 /**
155  * Handle 'address destroyed' messages from clients.
156  *
157  * @param cls unused, NULL
158  * @param client client that sent the request
159  * @param message the request message
160  */
161 void
162 GAS_handle_address_destroyed (void *cls,
163                               struct GNUNET_SERVER_Client *client,
164                               const struct GNUNET_MessageHeader *message);
165
166
167 /**
168  * Initialize scheduling subsystem.
169  *
170  * @param server handle to our server
171  * @param ah the address handle to use
172  */
173 void
174 GAS_scheduling_init (struct GNUNET_SERVER_Handle *server, struct GAS_Addresses_Handle *ah);
175
176
177 /**
178  * Shutdown scheduling subsystem.
179  */
180 void
181 GAS_scheduling_done (void);
182
183
184 #endif
185 /* end of gnunet-service-ats_scheduling.h */