-fix config, shutdown issue
[oweals/gnunet.git] / src / ats / gnunet-service-ats_connectivity.h
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2011-2015 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  * @file ats/gnunet-service-ats_connectivity.h
22  * @brief ats service, interaction with 'connecivity' API
23  * @author Matthias Wachs
24  * @author Christian Grothoff
25  *
26  * TODO: will need API to query connectivity requests!
27  */
28 #ifndef GNUNET_SERVICE_ATS_CONNECTIVITY_H
29 #define GNUNET_SERVICE_ATS_CONNECTIVITY_H
30
31
32 /**
33  * Is the given peer in the list of peers for which we
34  * have an address request?
35  *
36  * @param peer peer to query for
37  * @return #GNUNET_YES if so, #GNUNET_NO if not
38  */
39 int
40 GAS_connectivity_has_peer (const struct GNUNET_PeerIdentity *peer);
41
42
43 /**
44  * Handle 'request address' messages from clients.
45  *
46  * @param cls unused, NULL
47  * @param client client that sent the request
48  * @param message the request message
49  */
50 void
51 GAS_handle_request_address (void *cls,
52                             struct GNUNET_SERVER_Client *client,
53                             const struct GNUNET_MessageHeader *message);
54
55
56 /**
57  * Cancel 'request address' messages from clients.
58  *
59  * @param cls unused, NULL
60  * @param client client that sent the request
61  * @param message the request message
62  */
63 void
64 GAS_handle_request_address_cancel (void *cls,
65                                    struct GNUNET_SERVER_Client *client,
66                                    const struct GNUNET_MessageHeader *message);
67
68
69 /**
70  * Unregister a client (which may have been a connectivity client,
71  * but this is not assured).
72  *
73  * @param client handle of the (now dead) client
74  */
75 void
76 GAS_connectivity_remove_client (struct GNUNET_SERVER_Client *client);
77
78
79 /**
80  * Initialize connectivity subsystem.
81  */
82 void
83 GAS_connectivity_init (void);
84
85
86 /**
87  * Shutdown connectivity subsystem.
88  */
89 void
90 GAS_connectivity_done (void);
91
92
93 #endif
94 /* end of gnunet-service-ats_connectivity.h */