aboutsummaryrefslogtreecommitdiff
path: root/src/hostlist/gnunet-daemon-hostlist_client.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-06-03 08:41:00 +0000
committerChristian Grothoff <christian@grothoff.org>2014-06-03 08:41:00 +0000
commitaf4dff0ff8a129c05c75180446b691a0b2cd74c7 (patch)
treec3c02b821df02ea396e64a9b9a06ea9e9e85553b /src/hostlist/gnunet-daemon-hostlist_client.h
parentd7cf4a2a573e31c21630c08b038c2c648e5d3785 (diff)
downloadgnunet-af4dff0ff8a129c05c75180446b691a0b2cd74c7.tar.gz
gnunet-af4dff0ff8a129c05c75180446b691a0b2cd74c7.zip
-doxygen, code cleanup
Diffstat (limited to 'src/hostlist/gnunet-daemon-hostlist_client.h')
-rw-r--r--src/hostlist/gnunet-daemon-hostlist_client.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/hostlist/gnunet-daemon-hostlist_client.h b/src/hostlist/gnunet-daemon-hostlist_client.h
new file mode 100644
index 000000000..55f355649
--- /dev/null
+++ b/src/hostlist/gnunet-daemon-hostlist_client.h
@@ -0,0 +1,61 @@
1/*
2 This file is part of GNUnet.
3 (C) 2009 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 hostlist/gnunet-daemon-hostlist_client.h
22 * @brief hostlist support. Downloads HELLOs via HTTP.
23 * @author Christian Grothoff
24 */
25#ifndef GNUNET_DAEMON_HOSTLIST_CLIENT_H
26#define GNUNET_DAEMON_HOSTLIST_CLIENT_H
27
28#include "gnunet_core_service.h"
29#include "gnunet_statistics_service.h"
30#include "gnunet_util_lib.h"
31
32
33/**
34 * Start downloading hostlists from hostlist servers as necessary.
35 *
36 * @param c the configuration to use
37 * @param st hande for publishing statistics
38 * @param ch[OUT] set to handler for connect notifications
39 * @param dh[OUT] set to handler for disconnect notifications
40 * @param msgh[OUT] set to handler for message handler notifications
41 * @param learn set if client is learning new hostlists
42 * @return #GNUNET_OK on success
43 */
44int
45GNUNET_HOSTLIST_client_start (const struct GNUNET_CONFIGURATION_Handle *c,
46 struct GNUNET_STATISTICS_Handle *st,
47 GNUNET_CORE_ConnectEventHandler *ch,
48 GNUNET_CORE_DisconnectEventHandler *dh,
49 GNUNET_CORE_MessageCallback *msgh,
50 int learn);
51
52
53/**
54 * Stop downloading hostlists from hostlist servers as necessary.
55 */
56void
57GNUNET_HOSTLIST_client_stop (void);
58
59
60#endif
61/* end of gnunet-daemon-hostlist_client.h */