-cleaning up gnunet-service-ats_connectivity-*
[oweals/gnunet.git] / src / ats / gnunet-service-ats_connectivity.h
1 /*
2      This file is part of GNUnet.
3      (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  * Handle 'request address' messages from clients.
34  *
35  * @param cls unused, NULL
36  * @param client client that sent the request
37  * @param message the request message
38  */
39 void
40 GAS_handle_request_address (void *cls,
41                             struct GNUNET_SERVER_Client *client,
42                             const struct GNUNET_MessageHeader *message);
43
44
45 /**
46  * Cancel 'request address' messages from clients.
47  *
48  * @param cls unused, NULL
49  * @param client client that sent the request
50  * @param message the request message
51  */
52 void
53 GAS_handle_request_address_cancel (void *cls,
54                                    struct GNUNET_SERVER_Client *client,
55                                    const struct GNUNET_MessageHeader *message);
56
57
58 /**
59  * Unregister a client (which may have been a connectivity client,
60  * but this is not assured).
61  *
62  * @param client handle of the (now dead) client
63  */
64 void
65 GAS_connectivity_remove_client (struct GNUNET_SERVER_Client *client);
66
67
68 /**
69  * Initialize connectivity subsystem.
70  */
71 void
72 GAS_connectivity_init (void);
73
74
75 /**
76  * Shutdown connectivity subsystem.
77  */
78 void
79 GAS_connectivity_done (void);
80
81
82 #endif
83 /* end of gnunet-service-ats_connectivity.h */