-bringing copyright tags up to FSF standard
[oweals/gnunet.git] / src / hostlist / gnunet-daemon-hostlist_client.h
1 /*
2      This file is part of GNUnet.
3      Copyright (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 configuration to use
37  * @param st statistics handle to use
38  * @param[out] ch set to handler for CORE connect events
39  * @param[out] dh set to handler for CORE disconnect events
40  * @param[out] msgh set to handler for CORE advertisement messages
41  * @param learn should we learn hostlist URLs from CORE
42  * @return #GNUNET_OK on success
43  */
44 int
45 GNUNET_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  */
56 void
57 GNUNET_HOSTLIST_client_stop (void);
58
59
60 #endif
61 /* end of gnunet-daemon-hostlist_client.h */