aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-10-13 13:15:59 +0000
committerChristian Grothoff <christian@grothoff.org>2011-10-13 13:15:59 +0000
commit5335dcda0678ce5bcb06b6f4d90dc12ea9ba54aa (patch)
tree182a957d7405a916c963edd261ab61083df0740e
parentf40b9f4d92412da3a1461f16069c8bbb425bd136 (diff)
downloadgnunet-5335dcda0678ce5bcb06b6f4d90dc12ea9ba54aa.tar.gz
gnunet-5335dcda0678ce5bcb06b6f4d90dc12ea9ba54aa.zip
sapi implemented
-rw-r--r--src/ats/ats.h2
-rw-r--r--src/ats/ats_api_new.c473
-rw-r--r--src/ats/ats_api_performance.c12
3 files changed, 464 insertions, 23 deletions
diff --git a/src/ats/ats.h b/src/ats/ats.h
index 317528cad..062ceffab 100644
--- a/src/ats/ats.h
+++ b/src/ats/ats.h
@@ -42,7 +42,7 @@ enum StartFlag
42 42
43 43
44 44
45struct ClientStart 45struct ClientStartMessage
46{ 46{
47 struct GNUNET_MessageHeader header; 47 struct GNUNET_MessageHeader header;
48 48
diff --git a/src/ats/ats_api_new.c b/src/ats/ats_api_new.c
index dc06d901d..d379edd77 100644
--- a/src/ats/ats_api_new.c
+++ b/src/ats/ats_api_new.c
@@ -18,13 +18,43 @@
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02111-1307, USA.
19*/ 19*/
20/** 20/**
21 * @file include/gnunet_ats_service.h 21 * @file ats/ats_api_scheduling.c
22 * @brief automatic transport selection and outbound bandwidth determination 22 * @brief automatic transport selection and outbound bandwidth determination
23 * @author Christian Grothoff 23 * @author Christian Grothoff
24 * @author Matthias Wachs 24 * @author Matthias Wachs
25 */ 25 */
26#include "platform.h" 26#include "platform.h"
27#include "gnunet_ats_service.h" 27#include "gnunet_ats_service.h"
28#include "ats.h"
29
30
31/**
32 * Message in linked list we should send to the ATS service. The
33 * actual binary message follows this struct.
34 */
35struct PendingMessage
36{
37
38 /**
39 * Kept in a DLL.
40 */
41 struct PendingMessage *next;
42
43 /**
44 * Kept in a DLL.
45 */
46 struct PendingMessage *prev;
47
48 /**
49 * Size of the message.
50 */
51 size_t size;
52
53 /**
54 * Is this the 'ATS_START' message?
55 */
56 int is_init;
57};
28 58
29 59
30/** 60/**
@@ -32,34 +62,355 @@
32 */ 62 */
33struct GNUNET_ATS_SchedulingHandle 63struct GNUNET_ATS_SchedulingHandle
34{ 64{
65
66 /**
67 * Our configuration.
68 */
69 const struct GNUNET_CONFIGURATION_Handle *cfg;
70
71 /**
72 * Callback to invoke on suggestions.
73 */
74 GNUNET_ATS_AddressSuggestionCallback suggest_cb;
75
76 /**
77 * Closure for 'suggest_cb'.
78 */
79 void *suggest_cb_cls;
80
81 /**
82 * Connection to ATS service.
83 */
84 struct GNUNET_CLIENT_Connection *client;
85
86 /**
87 * Head of list of messages for the ATS service.
88 */
89 struct PendingMessage *pending_head;
90
91 /**
92 * Tail of list of messages for the ATS service
93 */
94 struct PendingMessage *pending_tail;
95
96 /**
97 * Current request for transmission to ATS.
98 */
99 struct GNUNET_CLIENT_TransmitHandle *th;
100
101 /**
102 * Array of session objects (we need to translate them to numbers and back
103 * for the protocol; the offset in the array is the session number on the
104 * network). Index 0 is always NULL and reserved to represent the NULL pointer.
105 * Unused entries are also NULL.
106 */
107 struct Session **session_array;
108
109 /**
110 * Size of the session array.
111 */
112 unsigned int session_array_size;
113
35}; 114};
36 115
37 116
38/** 117/**
118 * Re-establish the connection to the ATS service.
119 *
120 * @param sh handle to use to re-connect.
121 */
122static void
123reconnect (struct GNUNET_ATS_SchedulingHandle *sh);
124
125
126/**
127 * Transmit messages from the message queue to the service
128 * (if there are any, and if we are not already trying).
129 *
130 * @param sh handle to use
131 */
132static void
133do_transmit (struct GNUNET_ATS_SchedulingHandle *sh);
134
135
136/**
137 * We can now transmit a message to ATS. Do it.
138 *
139 * @param cls the 'struct GNUNET_ATS_SchedulingHandle'
140 * @param size number of bytes we can transmit to ATS
141 * @param buf where to copy the messages
142 * @return number of bytes copied into buf
143 */
144static size_t
145transmit_message_to_ats (void *cls,
146 size_t size,
147 void *buf)
148{
149 struct GNUNET_ATS_SchedulingHandle *sh = cls;
150 struct PendingMessage *p;
151 size_t ret;
152 char *cbuf;
153
154 sh->th = NULL;
155 ret = 0;
156 cbuf = buf;
157 while ( (NULL != (p = sh->pending_head)) &&
158 (p->size <= size) )
159 {
160 memcpy (&cbuf[ret], &p[1], p->size);
161 ret += p->size;
162 GNUNET_CONTAINER_DLL_remove (sh->pending_head,
163 sh->pending_tail,
164 p);
165 GNUNET_free (p);
166 }
167 do_transmit (sh);
168 return ret;
169}
170
171
172/**
173 * Transmit messages from the message queue to the service
174 * (if there are any, and if we are not already trying).
175 *
176 * @param sh handle to use
177 */
178static void
179do_transmit (struct GNUNET_ATS_SchedulingHandle *sh)
180{
181 struct PendingMessage *p;
182
183 if (NULL != sh->th)
184 return;
185 if (NULL == (p = sh->pending_head))
186 return;
187 sh->th = GNUNET_CLIENT_notify_transmit_ready (sh->client,
188 p->size,
189 GNUNET_TIME_UNIT_FOREVER_REL,
190 GNUNET_YES,
191 &transmit_message_to_ats, sh);
192}
193
194
195/**
196 * Find the session object corresponding to the given session ID.
197 *
198 * @param sh our handle
199 * @param session_id current session ID
200 * @return the session object (or NULL)
201 */
202static struct Session*
203find_session (struct GNUNET_ATS_SchedulingHandle *sh,
204 uint32_t session_id)
205{
206 if (session_id >= sh->session_array_size)
207 {
208 GNUNET_break (0);
209 return NULL;
210 }
211 return sh->session_array[session_id];
212}
213
214
215/**
216 * Get the ID for the given session object. If we do not have an ID for
217 * the given session object, allocate one.
218 *
219 * @param sh our handle
220 * @param session session object
221 * @return the session id
222 */
223static uint32_t
224get_session_id (struct GNUNET_ATS_SchedulingHandle *sh,
225 struct Session *session)
226{
227 unsigned int i;
228 unsigned int f;
229
230 f = 0;
231 for (i=1;i<sh->session_array_size;i++)
232 {
233 if (session == sh->session_array[i])
234 return i;
235 if ( (f == 0) &&
236 (sh->session_array[i] == NULL) )
237 f = i;
238 }
239 if (f == 0)
240 {
241 f = sh->session_array_size;
242 GNUNET_array_grow (sh->session_array,
243 sh->session_array_size,
244 sh->session_array_size * 2);
245 }
246 sh->session_array[f] = session;
247 return f;
248}
249
250
251/**
252 * Remove the session of the given session ID from the session
253 * table (it is no longer valid).
254 *
255 * @param sh our handle
256 * @param session_id identifies session that is no longer valid
257 */
258static void
259remove_session (struct GNUNET_ATS_SchedulingHandle *sh,
260 uint32_t session_id)
261{
262 GNUNET_assert (session_id < sh->session_array_size);
263 sh->session_array[session_id] = NULL;
264}
265
266
267/**
268 * Type of a function to call when we receive a message
269 * from the service.
270 *
271 * @param cls the 'struct GNUNET_ATS_SchedulingHandle'
272 * @param msg message received, NULL on timeout or fatal error
273 */
274static void
275process_ats_message (void *cls,
276 const struct GNUNET_MessageHeader *msg)
277{
278 struct GNUNET_ATS_SchedulingHandle *sh = cls;
279 const struct AddressSuggestionMessage *m;
280 const char *address;
281 const char *plugin_name;
282 uint16_t address_length;
283
284 if (NULL == msg)
285 {
286 GNUNET_CLIENT_disconnect (sh->client, GNUNET_NO);
287 sh->client = NULL;
288 reconnect (sh);
289 return;
290 }
291 if ( (ntohs (msg->type) != GNUNET_MESSAGE_TYPE_ATS_ADDRESS_SUGGESTION) ||
292 (ntohs (msg->size) <= sizeof (struct AddressSuggestionMessage)) )
293 {
294 GNUNET_break (0);
295 GNUNET_CLIENT_disconnect (sh->client, GNUNET_NO);
296 sh->client = NULL;
297 reconnect (sh);
298 return;
299 }
300 m = (const struct AddressSuggestionMessage*) msg;
301 address = (const char*) &m[1];
302 address_length = ntohs (m->address_length);
303 plugin_name = &address[address_length];
304 GNUNET_break (0 == ntohl (m->reserved));
305 if ( (ntohs (m->address_length) +
306 ntohs (m->plugin_name_length) +
307 sizeof (struct AddressSuggestionMessage) != ntohs (msg->size)) ||
308 (plugin_name[ntohs (m->plugin_name_length) - 1] != '\0') )
309 {
310 GNUNET_break (0);
311 GNUNET_CLIENT_disconnect (sh->client, GNUNET_NO);
312 sh->client = NULL;
313 reconnect (sh);
314 return;
315 }
316 sh->suggest_cb (sh->suggest_cb_cls,
317 &m->peer,
318 plugin_name,
319 address, address_length,
320 find_session (sh, ntohl (m->session_id)),
321 m->bandwidth_out,
322 m->bandwidth_in);
323 GNUNET_CLIENT_receive (sh->client,
324 &process_ats_message, sh,
325 GNUNET_TIME_UNIT_FOREVER_REL);
326}
327
328
329/**
330 * Re-establish the connection to the ATS service.
331 *
332 * @param sh handle to use to re-connect.
333 */
334static void
335reconnect (struct GNUNET_ATS_SchedulingHandle *sh)
336{
337 struct PendingMessage *p;
338 struct ClientStartMessage *init;
339
340 GNUNET_assert (NULL == sh->client);
341 sh->client = GNUNET_CLIENT_connect ("ats", sh->cfg);
342 GNUNET_assert (NULL != sh->client);
343 GNUNET_CLIENT_receive (sh->client,
344 &process_ats_message, sh,
345 GNUNET_TIME_UNIT_FOREVER_REL);
346 if ( (NULL == (p = sh->pending_head)) ||
347 (GNUNET_YES != p->is_init) )
348 {
349 p = GNUNET_malloc (sizeof (struct PendingMessage) +
350 sizeof (struct ClientStartMessage));
351 p->size = sizeof (struct ClientStartMessage);
352 p->is_init = GNUNET_YES;
353 init = (struct ClientStartMessage *) &p[1];
354 init->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_START);
355 init->header.size = htons (sizeof (struct ClientStartMessage));
356 init->start_flag = htonl (START_FLAG_SCHEDULING);
357 GNUNET_CONTAINER_DLL_insert (sh->pending_head,
358 sh->pending_tail,
359 p);
360 }
361 do_transmit (sh);
362}
363
364
365/**
39 * Initialize the ATS subsystem. 366 * Initialize the ATS subsystem.
40 * 367 *
41 * @param cfg configuration to use 368 * @param cfg configuration to use
42 * @param alloc_cb notification to call whenever the allocation changed 369 * @param suggest_cb notification to call whenever the suggestation changed
43 * @param alloc_cb_cls closure for 'alloc_cb' 370 * @param suggest_cb_cls closure for 'suggest_cb'
44 * @return ats context 371 * @return ats context
45 */ 372 */
46struct GNUNET_ATS_SchedulingHandle * 373struct GNUNET_ATS_SchedulingHandle *
47GNUNET_ATS_scheduling_init (const struct GNUNET_CONFIGURATION_Handle *cfg, 374GNUNET_ATS_scheduling_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
48 GNUNET_ATS_AddressSuggestionCallback alloc_cb, 375 GNUNET_ATS_AddressSuggestionCallback suggest_cb,
49 void *alloc_cb_cls) 376 void *suggest_cb_cls)
50{ 377{
51 return NULL; 378 struct GNUNET_ATS_SchedulingHandle *sh;
379
380 sh = GNUNET_malloc (sizeof (struct GNUNET_ATS_SchedulingHandle));
381 sh->cfg = cfg;
382 sh->suggest_cb = suggest_cb;
383 sh->suggest_cb_cls = suggest_cb_cls;
384 GNUNET_array_grow (sh->session_array,
385 sh->session_array_size,
386 4);
387 reconnect (sh);
388 return sh;
52} 389}
53 390
54 391
55/** 392/**
56 * Client is done with ATS scheduling, release resources. 393 * Client is done with ATS scheduling, release resources.
57 * 394 *
58 * @param atc handle to release 395 * @param sh handle to release
59 */ 396 */
60void 397void
61GNUNET_ATS_scheduling_done (struct GNUNET_ATS_SchedulingHandle *atc) 398GNUNET_ATS_scheduling_done (struct GNUNET_ATS_SchedulingHandle *sh)
62{ 399{
400 struct PendingMessage *p;
401
402 while (NULL != (p = sh->pending_head))
403 {
404 GNUNET_CONTAINER_DLL_remove (sh->pending_head,
405 sh->pending_tail,
406 p);
407 GNUNET_free (p);
408 }
409 GNUNET_CLIENT_disconnect (sh->client, GNUNET_NO);
410 GNUNET_array_grow (sh->session_array,
411 sh->session_array_size,
412 0);
413 GNUNET_free (sh);
63} 414}
64 415
65 416
@@ -67,13 +418,29 @@ GNUNET_ATS_scheduling_done (struct GNUNET_ATS_SchedulingHandle *atc)
67 * We would like to establish a new connection with a peer. ATS 418 * We would like to establish a new connection with a peer. ATS
68 * should suggest a good address to begin with. 419 * should suggest a good address to begin with.
69 * 420 *
70 * @param atc handle 421 * @param sh handle
71 * @param peer identity of the peer we need an address for 422 * @param peer identity of the peer we need an address for
72 */ 423 */
73void 424void
74GNUNET_ATS_suggest_address (struct GNUNET_ATS_SchedulingHandle *atc, 425GNUNET_ATS_suggest_address (struct GNUNET_ATS_SchedulingHandle *sh,
75 const struct GNUNET_PeerIdentity *peer) 426 const struct GNUNET_PeerIdentity *peer)
76{ 427{
428 struct PendingMessage *p;
429 struct RequestAddressMessage *m;
430
431 p = GNUNET_malloc (sizeof (struct PendingMessage) +
432 sizeof (struct RequestAddressMessage));
433 p->size = sizeof (struct RequestAddressMessage);
434 p->is_init = GNUNET_NO;
435 m = (struct RequestAddressMessage*) &p[1];
436 m->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_REQUEST_ADDRESS);
437 m->header.size = htons (sizeof (struct RequestAddressMessage));
438 m->reserved = htonl (0);
439 m->peer = *peer;
440 GNUNET_CONTAINER_DLL_insert_tail (sh->pending_head,
441 sh->pending_tail,
442 p);
443 do_transmit (sh);
77} 444}
78 445
79 446
@@ -85,7 +452,7 @@ GNUNET_ATS_suggest_address (struct GNUNET_ATS_SchedulingHandle *atc,
85 * which case the call may be ignored or the information may be stored 452 * which case the call may be ignored or the information may be stored
86 * for later use). Update bandwidth assignments. 453 * for later use). Update bandwidth assignments.
87 * 454 *
88 * @param atc handle 455 * @param sh handle
89 * @param peer identity of the new peer 456 * @param peer identity of the new peer
90 * @param plugin_name name of the transport plugin 457 * @param plugin_name name of the transport plugin
91 * @param plugin_addr address (if available) 458 * @param plugin_addr address (if available)
@@ -95,7 +462,7 @@ GNUNET_ATS_suggest_address (struct GNUNET_ATS_SchedulingHandle *atc,
95 * @param ats_count number of performance records in 'ats' 462 * @param ats_count number of performance records in 'ats'
96 */ 463 */
97void 464void
98GNUNET_ATS_address_update (struct GNUNET_ATS_SchedulingHandle *atc, 465GNUNET_ATS_address_update (struct GNUNET_ATS_SchedulingHandle *sh,
99 const struct GNUNET_PeerIdentity *peer, 466 const struct GNUNET_PeerIdentity *peer,
100 const char *plugin_name, 467 const char *plugin_name,
101 const void *plugin_addr, size_t plugin_addr_len, 468 const void *plugin_addr, size_t plugin_addr_len,
@@ -103,13 +470,51 @@ GNUNET_ATS_address_update (struct GNUNET_ATS_SchedulingHandle *atc,
103 const struct GNUNET_TRANSPORT_ATS_Information *ats, 470 const struct GNUNET_TRANSPORT_ATS_Information *ats,
104 uint32_t ats_count) 471 uint32_t ats_count)
105{ 472{
473 struct PendingMessage *p;
474 struct AddressUpdateMessage *m;
475 struct GNUNET_TRANSPORT_ATS_Information *am;
476 char *pm;
477 size_t namelen;
478 size_t msize;
479
480 namelen = (plugin_name == NULL) ? 0 : strlen (plugin_name) + 1;
481 msize = sizeof (struct AddressUpdateMessage) + plugin_addr_len +
482 ats_count * sizeof (struct GNUNET_TRANSPORT_ATS_Information) + namelen;
483 if ( (msize >= GNUNET_SERVER_MAX_MESSAGE_SIZE) ||
484 (plugin_addr_len >= GNUNET_SERVER_MAX_MESSAGE_SIZE) ||
485 (namelen >= GNUNET_SERVER_MAX_MESSAGE_SIZE) ||
486 (ats_count >= GNUNET_SERVER_MAX_MESSAGE_SIZE / sizeof (struct GNUNET_TRANSPORT_ATS_Information)) )
487 {
488 GNUNET_break (0);
489 return;
490 }
491 p = GNUNET_malloc (sizeof (struct PendingMessage) + msize);
492 p->size = msize;
493 p->is_init = GNUNET_NO;
494 m = (struct AddressUpdateMessage*) &p[1];
495 m->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_ADDRESS_UPDATE);
496 m->header.size = htons (msize);
497 m->ats_count = htonl (ats_count);
498 m->peer = *peer;
499 m->address_length = htons (plugin_addr_len);
500 m->plugin_name_length = htons (namelen);
501 m->session_id = htonl (get_session_id (sh, session));
502 am = (struct GNUNET_TRANSPORT_ATS_Information*) &m[1];
503 memcpy (am, ats, ats_count * sizeof (struct GNUNET_TRANSPORT_ATS_Information));
504 pm = (char *) &am[ats_count];
505 memcpy (pm, plugin_addr, plugin_addr_len);
506 memcpy (&pm[plugin_addr_len], plugin_name, namelen);
507 GNUNET_CONTAINER_DLL_insert_tail (sh->pending_head,
508 sh->pending_tail,
509 p);
510 do_transmit (sh);
106} 511}
107 512
108 513
109/** 514/**
110 * A session got destroyed, stop including it as a valid address. 515 * A session got destroyed, stop including it as a valid address.
111 * 516 *
112 * @param atc handle 517 * @param sh handle
113 * @param peer identity of the peer 518 * @param peer identity of the peer
114 * @param plugin_name name of the transport plugin 519 * @param plugin_name name of the transport plugin
115 * @param plugin_addr address (if available) 520 * @param plugin_addr address (if available)
@@ -117,13 +522,49 @@ GNUNET_ATS_address_update (struct GNUNET_ATS_SchedulingHandle *atc,
117 * @param session session handle that is no longer valid 522 * @param session session handle that is no longer valid
118 */ 523 */
119void 524void
120GNUNET_ATS_address_destroyed (struct GNUNET_ATS_SchedulingHandle *atc, 525GNUNET_ATS_address_destroyed (struct GNUNET_ATS_SchedulingHandle *sh,
121 const struct GNUNET_PeerIdentity *peer, 526 const struct GNUNET_PeerIdentity *peer,
122 const char *plugin_name, 527 const char *plugin_name,
123 const void *plugin_addr, 528 const void *plugin_addr,
124 size_t plugin_addr_len, 529 size_t plugin_addr_len,
125 const struct Session *session) 530 struct Session *session)
126{ 531{
532 struct PendingMessage *p;
533 struct AddressDestroyedMessage *m;
534 char *pm;
535 size_t namelen;
536 size_t msize;
537 uint32_t session_id;
538
539 namelen = (plugin_name == NULL) ? 0 : strlen (plugin_name) + 1;
540 msize = sizeof (struct AddressUpdateMessage) + plugin_addr_len +
541 namelen;
542 if ( (msize >= GNUNET_SERVER_MAX_MESSAGE_SIZE) ||
543 (plugin_addr_len >= GNUNET_SERVER_MAX_MESSAGE_SIZE) ||
544 (namelen >= GNUNET_SERVER_MAX_MESSAGE_SIZE) )
545 {
546 GNUNET_break (0);
547 return;
548 }
549 p = GNUNET_malloc (sizeof (struct PendingMessage) + msize);
550 p->size = msize;
551 p->is_init = GNUNET_NO;
552 m = (struct AddressDestroyedMessage*) &p[1];
553 m->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_ADDRESS_DESTROYED);
554 m->header.size = htons (msize);
555 m->reserved = htonl (0);
556 m->peer = *peer;
557 m->address_length = htons (plugin_addr_len);
558 m->plugin_name_length = htons (namelen);
559 m->session_id = htonl (session_id = get_session_id (sh, session));
560 pm = (char *) &m[1];
561 memcpy (pm, plugin_addr, plugin_addr_len);
562 memcpy (&pm[plugin_addr_len], plugin_name, namelen);
563 GNUNET_CONTAINER_DLL_insert_tail (sh->pending_head,
564 sh->pending_tail,
565 p);
566 do_transmit (sh);
567 remove_session (sh, session_id);
127} 568}
128 569
129/* end of ats_api_new.c */ 570/* end of ats_api_scheduling.c */
diff --git a/src/ats/ats_api_performance.c b/src/ats/ats_api_performance.c
index 0b0bd1042..e23c9bdf3 100644
--- a/src/ats/ats_api_performance.c
+++ b/src/ats/ats_api_performance.c
@@ -56,10 +56,10 @@ GNUNET_ATS_performance_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
56/** 56/**
57 * Client is done using the ATS performance subsystem, release resources. 57 * Client is done using the ATS performance subsystem, release resources.
58 * 58 *
59 * @param atc handle 59 * @param ph handle
60 */ 60 */
61void 61void
62GNUNET_ATS_performance_done (struct GNUNET_ATS_SchedulingHandle *atc) 62GNUNET_ATS_performance_done (struct GNUNET_ATS_SchedulingHandle *ph)
63{ 63{
64} 64}
65 65
@@ -77,7 +77,7 @@ struct GNUNET_ATS_ReservationContext
77 * the current amount of traffic we receive from the peer and ensure 77 * the current amount of traffic we receive from the peer and ensure
78 * that the peer could add 'amount' of data to its stream. 78 * that the peer could add 'amount' of data to its stream.
79 * 79 *
80 * @param h core handle 80 * @param ph performance handle
81 * @param peer identifies the peer 81 * @param peer identifies the peer
82 * @param amount reserve N bytes for receiving, negative 82 * @param amount reserve N bytes for receiving, negative
83 * amounts can be used to undo a (recent) reservation; 83 * amounts can be used to undo a (recent) reservation;
@@ -87,7 +87,7 @@ struct GNUNET_ATS_ReservationContext
87 * @deprecated will be replaced soon 87 * @deprecated will be replaced soon
88 */ 88 */
89struct GNUNET_ATS_ReservationContext * 89struct GNUNET_ATS_ReservationContext *
90GNUNET_ATS_reserve_bandwidth (struct GNUNET_ATS_PerformanceHandle *h, 90GNUNET_ATS_reserve_bandwidth (struct GNUNET_ATS_PerformanceHandle *ph,
91 const struct GNUNET_PeerIdentity *peer, 91 const struct GNUNET_PeerIdentity *peer,
92 int32_t amount, 92 int32_t amount,
93 GNUNET_ATS_ReservationCallback info, 93 GNUNET_ATS_ReservationCallback info,
@@ -113,12 +113,12 @@ GNUNET_ATS_reserve_bandwidth_cancel (struct
113 * Change preferences for the given peer. Preference changes are forgotten if peers 113 * Change preferences for the given peer. Preference changes are forgotten if peers
114 * disconnect. 114 * disconnect.
115 * 115 *
116 * @param cls closure 116 * @param ph performance handle
117 * @param peer identifies the peer 117 * @param peer identifies the peer
118 * @param ... 0-terminated specification of the desired changes 118 * @param ... 0-terminated specification of the desired changes
119 */ 119 */
120void 120void
121GNUNET_ATS_change_preference (struct GNUNET_ATS_PerformanceHandle *h, 121GNUNET_ATS_change_preference (struct GNUNET_ATS_PerformanceHandle *ph,
122 const struct GNUNET_PeerIdentity *peer, 122 const struct GNUNET_PeerIdentity *peer,
123 ...) 123 ...)
124{ 124{