summaryrefslogtreecommitdiff
path: root/src/ats/gnunet-service-ats_connectivity.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ats/gnunet-service-ats_connectivity.h')
-rw-r--r--src/ats/gnunet-service-ats_connectivity.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/ats/gnunet-service-ats_connectivity.h b/src/ats/gnunet-service-ats_connectivity.h
index 891a923db..98d84b44a 100644
--- a/src/ats/gnunet-service-ats_connectivity.h
+++ b/src/ats/gnunet-service-ats_connectivity.h
@@ -11,12 +11,12 @@
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details. 13 Affero General Public License for more details.
14 14
15 You should have received a copy of the GNU Affero General Public License 15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 17
18 SPDX-License-Identifier: AGPL3.0-or-later 18 SPDX-License-Identifier: AGPL3.0-or-later
19*/ 19 */
20/** 20/**
21 * @file ats/gnunet-service-ats_connectivity.h 21 * @file ats/gnunet-service-ats_connectivity.h
22 * @brief ats service, interaction with 'connecivity' API 22 * @brief ats service, interaction with 'connecivity' API
@@ -38,8 +38,8 @@
38 * @return #GNUNET_YES if so, #GNUNET_NO if not 38 * @return #GNUNET_YES if so, #GNUNET_NO if not
39 */ 39 */
40unsigned int 40unsigned int
41GAS_connectivity_has_peer (void *cls, 41GAS_connectivity_has_peer(void *cls,
42 const struct GNUNET_PeerIdentity *peer); 42 const struct GNUNET_PeerIdentity *peer);
43 43
44 44
45/** 45/**
@@ -49,8 +49,8 @@ GAS_connectivity_has_peer (void *cls,
49 * @param msg the request message 49 * @param msg the request message
50 */ 50 */
51void 51void
52GAS_handle_request_address (struct GNUNET_SERVICE_Client *client, 52GAS_handle_request_address(struct GNUNET_SERVICE_Client *client,
53 const struct RequestAddressMessage *msg); 53 const struct RequestAddressMessage *msg);
54 54
55 55
56/** 56/**
@@ -60,8 +60,8 @@ GAS_handle_request_address (struct GNUNET_SERVICE_Client *client,
60 * @param msg the request message 60 * @param msg the request message
61 */ 61 */
62void 62void
63GAS_handle_request_address_cancel (struct GNUNET_SERVICE_Client *client, 63GAS_handle_request_address_cancel(struct GNUNET_SERVICE_Client *client,
64 const struct RequestAddressMessage *msg); 64 const struct RequestAddressMessage *msg);
65 65
66 66
67/** 67/**
@@ -71,21 +71,21 @@ GAS_handle_request_address_cancel (struct GNUNET_SERVICE_Client *client,
71 * @param client handle of the (now dead) client 71 * @param client handle of the (now dead) client
72 */ 72 */
73void 73void
74GAS_connectivity_remove_client (struct GNUNET_SERVICE_Client *client); 74GAS_connectivity_remove_client(struct GNUNET_SERVICE_Client *client);
75 75
76 76
77/** 77/**
78 * Initialize connectivity subsystem. 78 * Initialize connectivity subsystem.
79 */ 79 */
80void 80void
81GAS_connectivity_init (void); 81GAS_connectivity_init(void);
82 82
83 83
84/** 84/**
85 * Shutdown connectivity subsystem. 85 * Shutdown connectivity subsystem.
86 */ 86 */
87void 87void
88GAS_connectivity_done (void); 88GAS_connectivity_done(void);
89 89
90 90
91#endif 91#endif