aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_dht_service.h
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2010-04-05 18:41:41 +0000
committerNathan S. Evans <evans@in.tum.de>2010-04-05 18:41:41 +0000
commitda0733704943528795d9798c89ecfda1078ca191 (patch)
tree0cf32e2611795c206c3c05e47d11e41384175691 /src/include/gnunet_dht_service.h
parent641f008e3f30aec0ea24b4f80e068ec87c6b2888 (diff)
downloadgnunet-da0733704943528795d9798c89ecfda1078ca191.tar.gz
gnunet-da0733704943528795d9798c89ecfda1078ca191.zip
more doxygen things, i think
Diffstat (limited to 'src/include/gnunet_dht_service.h')
-rw-r--r--src/include/gnunet_dht_service.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_dht_service.h b/src/include/gnunet_dht_service.h
index 85b144e38..f4c68bab6 100644
--- a/src/include/gnunet_dht_service.h
+++ b/src/include/gnunet_dht_service.h
@@ -213,8 +213,8 @@ typedef void (*GNUNET_DHT_FindPeerProcessor)(void *cls,
213 * @param options routing options for this message 213 * @param options routing options for this message
214 * @param message a message to inject at found peers (may be null) 214 * @param message a message to inject at found peers (may be null)
215 * @param key the key to look up 215 * @param key the key to look up
216 * @param iter function to call on each result 216 * @param proc function to call on each result
217 * @param iter_cls closure for iter 217 * @param proc_cls closure for proc
218 * @param cont continuation to call once message sent 218 * @param cont continuation to call once message sent
219 * @param cont_cls closure for continuation 219 * @param cont_cls closure for continuation
220 * 220 *
@@ -226,8 +226,8 @@ GNUNET_DHT_find_peer_start (struct GNUNET_DHT_Handle *handle,
226 enum GNUNET_DHT_RouteOption options, 226 enum GNUNET_DHT_RouteOption options,
227 struct GNUNET_MessageHeader *message, 227 struct GNUNET_MessageHeader *message,
228 const GNUNET_HashCode * key, 228 const GNUNET_HashCode * key,
229 GNUNET_DHT_FindPeerProcessor iter, 229 GNUNET_DHT_FindPeerProcessor proc,
230 void *iter_cls, 230 void *proc_cls,
231 GNUNET_SCHEDULER_Task cont, 231 GNUNET_SCHEDULER_Task cont,
232 void *cont_cls); 232 void *cont_cls);
233 233