aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_dht_service.h
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2010-03-17 17:20:19 +0000
committerNathan S. Evans <evans@in.tum.de>2010-03-17 17:20:19 +0000
commit8f0591d4ef517f57f01270c4c33150e1c045bc5a (patch)
tree185dd90152522c10e505ff6b452f59d54a2ab0a0 /src/include/gnunet_dht_service.h
parenta48e8f508403c9d8641a0c9eb47d88f98cb47f28 (diff)
downloadgnunet-8f0591d4ef517f57f01270c4c33150e1c045bc5a.tar.gz
gnunet-8f0591d4ef517f57f01270c4c33150e1c045bc5a.zip
dht related types and changes
Diffstat (limited to 'src/include/gnunet_dht_service.h')
-rw-r--r--src/include/gnunet_dht_service.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/include/gnunet_dht_service.h b/src/include/gnunet_dht_service.h
index cf09fd649..be7594e32 100644
--- a/src/include/gnunet_dht_service.h
+++ b/src/include/gnunet_dht_service.h
@@ -184,7 +184,7 @@ enum GNUNET_DHT_RouteOption
184/** 184/**
185 * Perform an asynchronous FIND_PEER operation on the DHT. 185 * Perform an asynchronous FIND_PEER operation on the DHT.
186 * 186 *
187 * @param h handle to the DHT service 187 * @param handle handle to the DHT service
188 * @param key the key to look up 188 * @param key the key to look up
189 * @param desired_replication_level how many peers should ultimately receive 189 * @param desired_replication_level how many peers should ultimately receive
190 * this message (advisory only, target may be too high for the 190 * this message (advisory only, target may be too high for the
@@ -202,7 +202,7 @@ enum GNUNET_DHT_RouteOption
202 * @return handle to stop the request 202 * @return handle to stop the request
203 */ 203 */
204struct GNUNET_DHT_FindPeerHandle * 204struct GNUNET_DHT_FindPeerHandle *
205GNUNET_DHT_route_start (struct GNUNET_DHT_Handle *h, 205GNUNET_DHT_route_start (struct GNUNET_DHT_Handle *handle,
206 const GNUNET_HashCode *key, 206 const GNUNET_HashCode *key,
207 unsigned int desired_replication_level, 207 unsigned int desired_replication_level,
208 enum GNUNET_DHT_RouteOption options, 208 enum GNUNET_DHT_RouteOption options,
@@ -210,7 +210,6 @@ GNUNET_DHT_route_start (struct GNUNET_DHT_Handle *h,
210 struct GNUNET_TIME_Relative timeout, 210 struct GNUNET_TIME_Relative timeout,
211 GNUNET_DHT_ReplyProcessor iter, 211 GNUNET_DHT_ReplyProcessor iter,
212 void *iter_cls, 212 void *iter_cls,
213 struct GNUNET_TIME_Relative timeout,
214 GNUNET_SCHEDULER_Task cont, 213 GNUNET_SCHEDULER_Task cont,
215 void *cont_cls); 214 void *cont_cls);
216 215