4eddd5290e6de3791803b3cb1bd9eb48e7fabe08
[oweals/gnunet.git] / src / ats / gnunet-service-ats_addresses.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_addresses.h
23  * @brief ats service address management
24  * @author Matthias Wachs
25  * @author Christian Grothoff
26  */
27 #ifndef GNUNET_SERVICE_ATS_ADDRESSES_H
28 #define GNUNET_SERVICE_ATS_ADDRESSES_H
29
30 #include "gnunet_util_lib.h"
31 #include "gnunet_ats_service.h"
32 #include "gnunet-service-ats.h"
33 #include "gnunet_statistics_service.h"
34 #include "ats.h"
35
36 /**
37  * NOTE: Do not change this documentation. This documentation is based on
38  * gnunet.org:/vcs/fsnsg/ats-paper.git/tech-doku/ats-tech-guide.tex
39  * use build_txt.sh to generate plaintext output
40  *
41  *   1 ATS addresses : ATS address management
42  *
43  *    This ATS addresses ("addresses") component manages the addresses known to
44  *    ATS service and suggests addresses to transport service when it is
45  *    interested in address suggestion for a peer. ATS addresses also
46  *    instantiates the bandwidth assignment mechanism (solver), notifies it
47  *    about changes to addresses and forwards changes to bandwidth assignments
48  *    to transport, depending if transport is interested in this change.
49  *
50  *     1.1 Input data
51  *
52  *       1.1.1 Addresses
53  *
54  *    Addresses are added by specifying peer ID, plugin, address, address length
55  *    and session, if available. ATS information can be specified if available.
56  *
57  *       1.1.2 Networks
58  *
59  *    ATS specifies a fix set of networks an address can belong to. For each
60  *    network an inbound and outbound quota will be specified. The available
61  *    networks and addtional helper varaibles are defined in
62  *    gnunet_ats_service.h. At the moment 5 networks are defined:
63  *      * GNUNET_ATS_NET_UNSPECIFIED
64  *      * GNUNET_ATS_NET_LOOPBACK
65  *      * GNUNET_ATS_NET_LAN
66  *      * GNUNET_ATS_NET_WAN
67  *      * GNUNET_ATS_NET_WLAN
68  *
69  *    The total number of networks defined is stored in
70  *    GNUNET_ATS_NetworkTypeCount GNUNET_ATS_NetworkType can be used array
71  *    initializer for an int array, while GNUNET_ATS_NetworkType is an
72  *    initializer for a char array containing a string description of all
73  *    networks
74  *
75  *       1.1.3 Quotas
76  *
77  *    An inbound and outbound quota for each of the networks mentioned in 1.1.2
78  *    is loaded from ats configuration during initialization. This quota defines
79  *    to total amount of inbound and outbound traffic allowed for a specific
80  *    network. The configuration values used are in section ats:
81  *      * "NETWORK"_QUOTA_IN = <value>
82  *      * "NETWORK"_QUOTA_IN = <value>
83  *
84  *    You can specify quotas by setting the <value> to a:
85  *      * unrestricted: unlimited
86  *      * number of bytes: e.g. 10240
87  *      * fancy value: e.g. 64 Kib
88  *
89  *    unlimited is defined as GNUNET_ATS_MaxBandwidthString and equivalent to
90  *    the value GNUNET_ATS_MaxBandwidth Important predefined values for quotas
91  *    are:
92  *      * GNUNET_ATS_DefaultBandwidth: 65536
93  *      * GNUNET_ATS_MaxBandwidth: UINT32_MAX
94  *      * GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT: 1024
95  *
96  *    Details of loading quotas and default values will be described on
97  *
98  *       1.1.4 Preference values
99  *
100  *     1.2 Data structures used
101  *
102  *    Addresse uses struct ATS_Address for each address. The structs are stored
103  *    in a linked list and provides a pointer void *solver_information for the
104  *    solver to store address specific information. It provides the int values
105  *    active which is set to GNUNET_YES if the address is select for transport
106  *    use and used, representing that transport service is actively using this
107  *    address. Address information are stored in peer, addr, addr_len, plugin.
108  *
109  *     1.3 Initialization
110  *
111  *    During initialization a hashmap to store addresses is created. The quotas
112  *    for all networks defined for ATS are loaded from configuration. For each
113  *    network first the logic will check if the string
114  *    GNUNET_ATS_MaxBandwidthString is configured, if not it will try to convert
115  *    the configured value as a fancy size and if this fails it will try to use
116  *    it as a value_number. If no configuration value is found it will assign
117  *    GNUNET_ATS_DefaultBandwidth. The most important step is to load the
118  *    configured solver using configuration "[ats]:MODE". Current solvers are
119  *    MODE_SIMPLISTIC, MODE_MLP. Interaction is done using a solver API
120  *
121  *     1.4 Solver API
122  *
123  *    Solver functions:
124  *      * s_init: init the solver with required information
125  *      * s_add: add a new address
126  *      * s_update: update ATS values or session for an address
127  *      * s_get: get prefered address for a peer
128  *      * s_del: delete an address
129  *      * s_pref: change preference value for a peer
130  *      * s_done: shutdown solver
131  *
132  *    Callbacks: addresses provides a bandwidth_changed_cb callback to the
133  *    solver which is called when bandwidth assigned to peer has changed
134  *
135  *     1.5 Shutdown
136  *
137  *    During shutdown all addresses are freed and the solver told to shutdown
138  *
139  *     1.6 Addresses and sessions
140  *
141  *    Addresses consist of the address itself and a numerical session. When a
142  *    new address without a session is added it has no session, so it gets
143  *    session 0 assigned. When an address with a session is added and an address
144  *    object with session 0 is found, this object is updated with the session
145  *    otherwise a new address object with this session assigned is created.
146  *
147  *       1.6.1 Terminology
148  *
149  *    Addresses a1,a2 with session s1, s2 are "exact" if:
150  *    (a1 == a2)&&(s1 == s2)
151  *    Addresses a1,a2 with session s1, s2 are "equivalent" if:
152  *    (a1 == a2)&&((s1 == s2)||(s1 == 0)||(s2 == 0)
153  *
154  *     1.7 Address management
155  *
156  *    Transport service notifies ATS about changes to the addresses known to
157  *    him.
158  *
159  *       1.7.1 Adding an address
160  *
161  *    When transport learns a new address it tells ATS and ATS is telling
162  *    addresses about it using GAS_address_add. If not known to addresses it
163  *    creates a new address object and calls solver's s_add. ATS information are
164  *    deserialized and solver is notified about the session and ATS information
165  *    using s_update.
166  *
167  *       1.7.2 Updating an address
168  *
169  *    Addresses does an lookup up for the existing address with the given
170  *    session. If disassembles included ATS information and notifies the solver
171  *    using s_update about the update.
172  *
173  *       1.7.3 Deleting an address
174  *
175  *    Addresses does an lookup for the exact address and session and if removes
176  *    this address. If session != 0 the session is set to 0 and the address is
177  *    kept. If session == 0, the addresses is removed.
178  *
179  *       1.7.4 Requesting an address suggestion
180  *
181  *    The address client issues a request address message to be notified about
182  *    address suggestions for a specific peer. Addresses asks the solver with
183  *    s_get. If no address is available, it will not send a response, otherwise
184  *    it will respond with the choosen address.
185  *
186  *       1.7.5 Address suggestions
187  *
188  *    Addresses will notify the client automatically on any bandwidth_changed_cb
189  *    by the solver if a address suggestion request is pending. If no address is
190  *    available it will not respond at all If the client is not interested
191  *    anymore, it has to cancel the address suggestion request.
192  *
193  *       1.7.6 Suggestions blocks and reset
194  *
195  *    After suggesting an address it is blocked for ATS_BLOCKING_DELTA sec. to
196  *    prevent the client from being thrashed. If the client requires immediately
197  *    it can reset this block using GAS_addresses_handle_backoff_reset.
198  *
199  *       1.7.7 Marking address in use
200  *
201  *    The client can notify addresses that it successfully uses an address and
202  *    wants this address to be kept by calling GSA_address_in_use. Adresses will
203  *    mark the address as used an notify the solver about the use.
204  *
205  *       1.7.8 Address lifecycle
206  *
207  *      * (add address)
208  *      * (updated address) || (address in use)
209  *      * (delete address)
210  *
211  *     1.8 Bandwidth assignment
212  *
213  *    The addresses are used to perform resource allocation operations. ATS
214  *    addresses takes care of instantiating the solver configured and notifies
215  *    the respective solver about address changes and receives changes to the
216  *    bandwidth assignment from the solver. The current bandwidth assignment is
217  *    sent to transport. The specific solvers will be described in the specific
218  *    section.
219  *
220  *     1.9 Changing peer preferences
221  *
222  *    The bandwidth assigned to a peer can be influenced by setting a preference
223  *    for a peer. The prefernce will be given to to the solver with s_pref which
224  *    has to take care of the preference value
225
226  */
227
228
229 /*
230  * How long will address suggestions blocked after a suggestion
231  */
232 #define ATS_BLOCKING_DELTA GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, 100)
233
234 struct GAS_Addresses_Handle;
235
236 /**
237  * Information provided by ATS normalization
238  */
239 struct GAS_NormalizationInfo
240 {
241                 /**
242                  * Next index to use in averaging queue
243                  */
244                 unsigned int avg_queue_index;
245
246                 /**
247                  * Averaging queue
248                  */
249           uint32_t atsi_abs[GAS_normalization_queue_length];
250
251                 /**
252                  * Averaged ATSI values from queue
253                  */
254                 uint32_t avg;
255
256                 /**
257                  * Normalized values from queue to a range of values [1.0...2.0]
258                  */
259                 double norm;
260 };
261
262 /**
263  * Address with additional information
264  */
265 struct ATS_Address
266 {
267   /**
268    * Next element in DLL
269    */
270   struct ATS_Address *next;
271
272   /**
273    * Previous element in DLL
274    */
275   struct ATS_Address *prev;
276
277   /**
278    * Peer ID
279    */
280   struct GNUNET_PeerIdentity peer;
281
282   /**
283    * Session ID, 0 if no session is given
284    */
285   uint32_t session_id;
286
287   /**
288    * Address
289    */
290   const void *addr;
291
292   /**
293    * Address length
294    */
295   size_t addr_len;
296
297   /**
298    * Plugin name
299    */
300   char *plugin;
301
302   /**
303    * Solver specific information for this address
304    */
305   void *solver_information;
306
307   /**
308    * ATS performance information for this address
309    */
310   struct GNUNET_ATS_Information *atsi;
311
312   /**
313    * ATS performance information for this address
314    */
315   uint32_t atsi_count;
316
317 #if 0
318   /* CHECK USAGE */
319   struct GNUNET_TIME_Relative atsp_latency;
320
321   /* CHECK USAGE */
322   struct GNUNET_BANDWIDTH_Value32NBO atsp_utilization_in;
323
324   /* CHECK USAGE */
325   struct GNUNET_BANDWIDTH_Value32NBO atsp_utilization_out;
326
327
328   /* CHECK USAGE */
329   uint32_t atsp_distance;
330
331   /* CHECK USAGE */
332   uint32_t atsp_cost_wan;
333
334   /* CHECK USAGE */
335   uint32_t atsp_cost_lan;
336
337   /* CHECK USAGE */
338   uint32_t atsp_cost_wlan;
339
340   /* CHECK USAGE */
341   uint32_t atsp_network_type;
342 #endif
343   /**
344    * Inbound bandwidth assigned by solver in NBO
345    */
346   struct GNUNET_BANDWIDTH_Value32NBO assigned_bw_in;
347
348   /**
349    * Outbound bandwidth assigned by solver in NBO
350    */
351   struct GNUNET_BANDWIDTH_Value32NBO assigned_bw_out;
352
353   /**
354    * Blocking interval
355    */
356   struct GNUNET_TIME_Relative block_interval;
357
358   /**
359    * Time when address can be suggested again
360    */
361   struct GNUNET_TIME_Absolute blocked_until;
362
363   /**
364    * Is this the active address for this peer?
365    */
366   int active;
367
368   /**
369    * Is this the address for this peer in use?
370    */
371   int used;
372
373   /**
374    * Normalized ATS performance information for this address
375    * Each entry can be accessed using the GNUNET_ATS_QualityProperties avg_queue_index
376    */
377   struct GAS_NormalizationInfo atsin[GNUNET_ATS_QualityPropertiesCount];
378 };
379
380
381 /**
382  * Callback to call from solver when bandwidth for address has changed
383  *
384  * @param address the with changed bandwidth assigned
385  */
386
387 typedef void
388  (*GAS_bandwidth_changed_cb) (void *cls, struct ATS_Address *address);
389
390 typedef const double *
391  (*GAS_get_preferences) (void *cls, const struct GNUNET_PeerIdentity *id);
392
393
394 /*
395  * Solver API
396  * ----------
397  */
398
399 /**
400  * Init the simplistic problem solving component
401  *
402  * Quotas:
403  * network[i] contains the network type as type GNUNET_ATS_NetworkType[i]
404  * out_quota[i] contains outbound quota for network type i
405  * in_quota[i] contains inbound quota for network type i
406  *
407  * Example
408  * network = {GNUNET_ATS_NET_UNSPECIFIED, GNUNET_ATS_NET_LOOPBACK, GNUNET_ATS_NET_LAN, GNUNET_ATS_NET_WAN, GNUNET_ATS_NET_WLAN}
409  * network[2]   == GNUNET_ATS_NET_LAN
410  * out_quota[2] == 65353
411  * in_quota[2]  == 65353
412  *
413  * @param cfg configuration handle
414  * @param stats the GNUNET_STATISTICS handle
415  * @param network array of GNUNET_ATS_NetworkType with length dest_length
416  * @param out_quota array of outbound quotas
417  * @param in_quota array of outbound quota
418  * @param bw_changed_cb callback to call when assigned changes
419  * @return handle for the solver on success, NULL on fail
420  */
421 typedef void *
422  (*GAS_solver_init) (const struct GNUNET_CONFIGURATION_Handle *cfg,
423                      const struct GNUNET_STATISTICS_Handle *stats,
424                      int *network,
425                      unsigned long long *out_quota,
426                      unsigned long long *in_quota,
427                      int dest_length,
428                      GAS_bandwidth_changed_cb bw_changed_cb,
429                      void *bw_changed_cb_cls,
430                      GAS_get_preferences get_preference,
431                      void *get_preference_cls);
432
433
434 /**
435  * Change the preference for a peer
436  *
437  * @param handle the solver handle
438  * @param client the client sending this request
439  * @param peer the peer id
440  * @param kind the preference kind to change
441  * @param score the new preference score
442  * @param pref_rel the normalized preference value for this kind over all clients
443  */
444 typedef void
445 (*GAS_solver_address_change_preference) (void *solver,
446                                                                                                                                                                  struct GNUNET_CONTAINER_MultiHashMap *addresses,
447                                                                                                                                                                  const struct GNUNET_PeerIdentity *peer,
448                                                                                                                                                                  enum GNUNET_ATS_PreferenceKind kind,
449                                                                                                                                                                  double pref_rel);
450
451 /**
452  * Add a single address within a network to the solver
453  *
454  * @param solver the solver Handle
455  * @param addresses the address hashmap containing all addresses
456  * @param address the address to add
457  * @param network network type of this address
458  */
459 typedef void
460 (*GAS_solver_address_add) (void *solver,
461                                                                                                                 struct GNUNET_CONTAINER_MultiHashMap *addresses,
462                                                                                                                 struct ATS_Address *address,
463                                                                                                                 uint32_t network);
464
465
466 /**
467  * Delete an address or just the session from the solver
468  *
469  * @param solver the solver Handle
470  * @param addresses the address hashmap containing all addresses
471  * @param address the address to delete
472  * @param session_only remove address or just session
473  */
474 typedef void
475  (*GAS_solver_address_delete) (void *solver,
476                                struct GNUNET_CONTAINER_MultiHashMap *addresses,
477                                struct ATS_Address *address,
478                                int session_only);
479
480 /**
481  * Notify the solver about an update for an address
482  *
483  * @param solver the solver to use
484  * @param addresses the address hashmap containing all addresses
485  * @param address the address
486  * @param session the previous session
487  * @param in_use previous address used state: yes or no
488  * @param atsi ats previous performance information
489  * @param atsi_count previous number of ats performance information
490  *
491  */
492 typedef void
493 (*GAS_solver_address_update) (void *solver,
494                               struct GNUNET_CONTAINER_MultiHashMap *addresses,
495                               struct ATS_Address *address,
496                               uint32_t prev_session,
497                               int in_use,
498                               const struct GNUNET_ATS_Information *prev_atsi,
499                               uint32_t prev_atsi_count);
500
501
502 /**
503  * Get the prefered address for a peer from solver
504  *
505  * @param solver the solver to use
506  * @param addresses the address hashmap containing all addresses
507  * @param peer the peer
508  */
509 typedef const struct ATS_Address *
510 (*GAS_solver_get_preferred_address) (void *solver,
511                                      struct GNUNET_CONTAINER_MultiHashMap *addresses,
512                                      const struct GNUNET_PeerIdentity *peer);
513
514
515 /**
516  * Stop getting the prefered address for a peer from solver
517  *
518  * @param solver the solver to use
519  * @param addresses the address hashmap containing all addresses
520  * @param peer the peer
521  */
522 typedef void
523 (*GAS_solver_stop_get_preferred_address) (void *solver,
524                                      struct GNUNET_CONTAINER_MultiHashMap *addresses,
525                                      const struct GNUNET_PeerIdentity *peer);
526
527 /**
528  * Shutdown solver
529  *
530  * @param solver the solver to shutdown
531  */
532
533 typedef void
534  (*GAS_solver_done) (void *solver);
535
536
537 /**
538  * Initialize address subsystem. The addresses subsystem manages the addresses
539  * known and current performance information. It has a solver component
540  * responsible for the resource allocation. It tells the solver about changes
541  * and receives updates when the solver changes the ressource allocation.
542  *
543  * @param cfg configuration to use
544  * @param stats the statistics handle to use
545  * @return an address handle
546  */
547 struct GAS_Addresses_Handle *
548 GAS_addresses_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
549                     const struct GNUNET_STATISTICS_Handle *stats);
550
551
552 /**
553  * Shutdown address subsystem.
554  *
555  * @param handle the address handle to shutdown
556  */
557 void
558 GAS_addresses_done (struct GAS_Addresses_Handle *handle);
559
560
561 /**
562  * Add a new address for a peer.
563  *
564  * @param handle the address handle to use
565  * @param peer peer
566  * @param plugin_name transport plugin name
567  * @param plugin_addr plugin address
568  * @param plugin_addr_len length of the plugin address
569  * @param session_id session id, can be 0
570  * @param atsi performance information for this address
571  * @param atsi_count number of performance information contained
572  */
573 void
574 GAS_addresses_add (struct GAS_Addresses_Handle *handle,
575                    const struct GNUNET_PeerIdentity *peer,
576                    const char *plugin_name,
577                    const void *plugin_addr,
578                    size_t plugin_addr_len,
579                    uint32_t session_id,
580                    const struct GNUNET_ATS_Information *atsi,
581                    uint32_t atsi_count);
582
583
584 /**
585  * Notification about active use of an address.
586  * in_use == GNUNET_YES:
587  *      This address is used to maintain an active connection with a peer.
588  * in_use == GNUNET_NO:
589  *      This address is no longer used to maintain an active connection with a peer.
590  *
591  * Note: can only be called with in_use == GNUNET_NO if called with GNUNET_YES
592  * before
593  *
594  * @param handle the address handle to use
595  * @param peer peer
596  * @param plugin_name transport plugin name
597  * @param plugin_addr plugin address
598  * @param plugin_addr_len length of the plugin address
599  * @param session_id session id, can be 0
600  * @param in_use GNUNET_YES if GNUNET_NO
601  * @return GNUNET_SYSERR on failure (address unknown ...)
602  */
603 int
604 GAS_addresses_in_use (struct GAS_Addresses_Handle *handle,
605                       const struct GNUNET_PeerIdentity *peer,
606                       const char *plugin_name,
607                       const void *plugin_addr,
608                       size_t plugin_addr_len,
609                       uint32_t session_id,
610                       int in_use);
611
612
613 /**
614  * Update an address with a session or performance information for a peer.
615  *
616  * If an address was added without a session it will be updated with the
617  * session
618  *
619  * @param handle the address handle to use
620  * @param peer peer
621  * @param plugin_name transport plugin name
622  * @param plugin_addr plugin address
623  * @param plugin_addr_len length of the plugin address
624  * @param session_id session id, can be 0
625  * @param atsi performance information for this address
626  * @param atsi_count number of performance information contained
627  */
628 void
629 GAS_addresses_update (struct GAS_Addresses_Handle *handle,
630                       const struct GNUNET_PeerIdentity *peer,
631                       const char *plugin_name,
632                       const void *plugin_addr,
633                       size_t plugin_addr_len,
634                       uint32_t session_id,
635                       const struct GNUNET_ATS_Information *atsi,
636                       uint32_t atsi_count);
637
638
639 /**
640  * Remove an address or just a session for a peer.
641  *
642  * @param handle the address handle to use
643  * @param peer peer
644  * @param plugin_name transport plugin name
645  * @param plugin_addr plugin address
646  * @param plugin_addr_len length of the plugin address
647  * @param session_id session id, can be 0
648  */
649 void
650 GAS_addresses_destroy (struct GAS_Addresses_Handle *handle,
651                        const struct GNUNET_PeerIdentity *peer,
652                        const char *plugin_name,
653                        const void *plugin_addr,
654                        size_t plugin_addr_len,
655                        uint32_t session_id);
656
657
658 /**
659  * Remove all addresses
660  *
661  * @param handle the address handle to use
662  */
663 void
664 GAS_addresses_destroy_all (struct GAS_Addresses_Handle *handle);
665
666
667 /**
668  * Request address suggestions for a peer
669  *
670  * @param handle the address handle
671  * @param peer the peer id
672  */
673 void
674 GAS_addresses_request_address (struct GAS_Addresses_Handle *handle,
675                                const struct GNUNET_PeerIdentity *peer);
676
677 /**
678  * Cancel address suggestions for a peer
679  *
680  * @param handle the address handle
681  * @param peer the peer id
682  */
683 void
684 GAS_addresses_request_address_cancel (struct GAS_Addresses_Handle *handle,
685                                       const struct GNUNET_PeerIdentity *peer);
686
687
688 /**
689  * Reset suggestion backoff for a peer
690  *
691  * Suggesting addresses is blocked for ATS_BLOCKING_DELTA. Blocking can be
692  * reset using this function
693  *
694  * @param handle the address handle
695  * @param peer the peer id
696  */
697 void
698 GAS_addresses_handle_backoff_reset (struct GAS_Addresses_Handle *handle,
699                                     const struct GNUNET_PeerIdentity *peer);
700
701
702 /**
703  * Change the preference for a peer
704  *
705  * @param handle the address handle
706  * @param client the client sending this request
707  * @param peer the peer id
708  * @param kind the preference kind to change
709  * @param score_abs the new preference score
710  */
711 void
712 GAS_addresses_change_preference (struct GAS_Addresses_Handle *handle,
713                                  void *client,
714                                  const struct GNUNET_PeerIdentity *peer,
715                                  enum GNUNET_ATS_PreferenceKind kind,
716                                  float score_abs);
717
718
719 /**
720  * Iterator for GAS_addresses_iterate_peers
721  *
722  * @param p_it_cls closure
723  * @param id the peer id
724  */
725 typedef void (*GNUNET_ATS_Peer_Iterator) (void *p_it_cls,
726                                           const struct GNUNET_PeerIdentity *id);
727
728
729 /**
730  * Return all peers currently known to ATS
731  *
732  * @param handle the address handle to use
733  * @param p_it the iterator to call for every peer
734  * @param p_it_cls the closure for the iterator
735  */
736 void
737 GAS_addresses_iterate_peers (struct GAS_Addresses_Handle *handle,
738                              GNUNET_ATS_Peer_Iterator p_it,
739                              void *p_it_cls);
740
741
742 /**
743  * Iterator for GAS_addresses_get_peer_info
744  *
745  * @param p_it_cls closure closure
746  * @param id the peer id
747  * @param plugin_name plugin name
748  * @param plugin_addr address
749  * @param plugin_addr_len address length
750  * @param address_active is address actively used
751  * @param atsi ats performance information
752  * @param atsi_count number of ats performance elements
753  * @param bandwidth_out current outbound bandwidth assigned to address
754  * @param bandwidth_in current inbound bandwidth assigned to address
755  */
756 typedef void (*GNUNET_ATS_PeerInfo_Iterator) (void *p_it_cls,
757     const struct GNUNET_PeerIdentity *id,
758     const char *plugin_name,
759     const void *plugin_addr,
760     size_t plugin_addr_len,
761     const int address_active,
762     const struct GNUNET_ATS_Information *atsi,
763     uint32_t atsi_count,
764     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
765     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in);
766
767
768 /**
769  * Return information all peers currently known to ATS
770  *
771  * @param handle the address handle to use
772  * @param peer the respective peer
773  * @param pi_it the iterator to call for every peer
774  * @param pi_it_cls the closure for the iterator
775  */
776 void
777 GAS_addresses_get_peer_info (struct GAS_Addresses_Handle *handle,
778                              const struct GNUNET_PeerIdentity *peer,
779                              GNUNET_ATS_PeerInfo_Iterator pi_it,
780                              void *pi_it_cls);
781
782 #endif
783
784 /* end of gnunet-service-ats_addresses.h */