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