aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_dht_service.h
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2010-11-05 18:21:50 +0000
committerNathan S. Evans <evans@in.tum.de>2010-11-05 18:21:50 +0000
commit75a33a1499cf60ea4364c9aa673816629a6c1413 (patch)
tree0620da4312bb04de4d7b65074fdd3b0c3dd6cc0e /src/include/gnunet_dht_service.h
parent7217c601ad30760872823193d62307e7a335d226 (diff)
downloadgnunet-75a33a1499cf60ea4364c9aa673816629a6c1413.tar.gz
gnunet-75a33a1499cf60ea4364c9aa673816629a6c1413.zip
big scheduler refactoring, expect some issues
Diffstat (limited to 'src/include/gnunet_dht_service.h')
-rw-r--r--src/include/gnunet_dht_service.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/include/gnunet_dht_service.h b/src/include/gnunet_dht_service.h
index b3bf2b84b..7ab818de7 100644
--- a/src/include/gnunet_dht_service.h
+++ b/src/include/gnunet_dht_service.h
@@ -99,15 +99,13 @@ enum GNUNET_DHT_RouteOption
99/** 99/**
100 * Initialize the connection with the DHT service. 100 * Initialize the connection with the DHT service.
101 * 101 *
102 * @param sched scheduler to use
103 * @param cfg configuration to use 102 * @param cfg configuration to use
104 * @param ht_len size of the internal hash table to use for 103 * @param ht_len size of the internal hash table to use for
105 * processing multiple GET/FIND requests in parallel 104 * processing multiple GET/FIND requests in parallel
106 * @return NULL on error 105 * @return NULL on error
107 */ 106 */
108struct GNUNET_DHT_Handle * 107struct GNUNET_DHT_Handle *
109GNUNET_DHT_connect (struct GNUNET_SCHEDULER_Handle *sched, 108GNUNET_DHT_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
110 const struct GNUNET_CONFIGURATION_Handle *cfg,
111 unsigned int ht_len); 109 unsigned int ht_len);
112 110
113 111