aboutsummaryrefslogtreecommitdiff
path: root/src/hostlist
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-08-15 21:51:21 +0000
committerChristian Grothoff <christian@grothoff.org>2011-08-15 21:51:21 +0000
commit6fd3e715cae09fa6e657c96f1c6f9711ee51f42f (patch)
treeedbc42f37889069033e57da201fef242939a6e0f /src/hostlist
parent502af2167f7c218366666ca4944bd7cc54b5b19a (diff)
downloadgnunet-6fd3e715cae09fa6e657c96f1c6f9711ee51f42f.tar.gz
gnunet-6fd3e715cae09fa6e657c96f1c6f9711ee51f42f.zip
indentation
Diffstat (limited to 'src/hostlist')
-rw-r--r--src/hostlist/hostlist-client.h11
-rw-r--r--src/hostlist/hostlist-server.h13
2 files changed, 11 insertions, 13 deletions
diff --git a/src/hostlist/hostlist-client.h b/src/hostlist/hostlist-client.h
index 80ead64bb..c6561c820 100644
--- a/src/hostlist/hostlist-client.h
+++ b/src/hostlist/hostlist-client.h
@@ -89,12 +89,11 @@
89 * @param learn set if client is learning new hostlists 89 * @param learn set if client is learning new hostlists
90 * @return GNUNET_OK on success 90 * @return GNUNET_OK on success
91 */ 91 */
92int 92int GNUNET_HOSTLIST_client_start (const struct GNUNET_CONFIGURATION_Handle *c,
93GNUNET_HOSTLIST_client_start (const struct GNUNET_CONFIGURATION_Handle *c, 93 struct GNUNET_STATISTICS_Handle *st,
94 struct GNUNET_STATISTICS_Handle *st, 94 GNUNET_CORE_ConnectEventHandler *ch,
95 GNUNET_CORE_ConnectEventHandler *ch, 95 GNUNET_CORE_DisconnectEventHandler *dh,
96 GNUNET_CORE_DisconnectEventHandler *dh, 96 GNUNET_CORE_MessageCallback *msgh, int learn);
97 GNUNET_CORE_MessageCallback *msgh, int learn);
98 97
99 98
100/** 99/**
diff --git a/src/hostlist/hostlist-server.h b/src/hostlist/hostlist-server.h
index 7b7e37a4d..b5960b39c 100644
--- a/src/hostlist/hostlist-server.h
+++ b/src/hostlist/hostlist-server.h
@@ -38,13 +38,12 @@
38 * 38 *
39 * @return GNUNET_OK on success 39 * @return GNUNET_OK on success
40 */ 40 */
41int 41int GNUNET_HOSTLIST_server_start (const struct GNUNET_CONFIGURATION_Handle *c,
42GNUNET_HOSTLIST_server_start (const struct GNUNET_CONFIGURATION_Handle *c, 42 struct GNUNET_STATISTICS_Handle *st,
43 struct GNUNET_STATISTICS_Handle *st, 43 struct GNUNET_CORE_Handle *core,
44 struct GNUNET_CORE_Handle *core, 44 GNUNET_CORE_ConnectEventHandler *server_ch,
45 GNUNET_CORE_ConnectEventHandler *server_ch, 45 GNUNET_CORE_DisconnectEventHandler *server_dh,
46 GNUNET_CORE_DisconnectEventHandler *server_dh, 46 int advertise);
47 int advertise);
48 47
49 48
50/** 49/**