aboutsummaryrefslogtreecommitdiff
path: root/src/dht/dht_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dht/dht_api.c')
-rw-r--r--src/dht/dht_api.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/dht/dht_api.c b/src/dht/dht_api.c
index 413ecb83a..15faba6c9 100644
--- a/src/dht/dht_api.c
+++ b/src/dht/dht_api.c
@@ -1132,7 +1132,7 @@ GNUNET_DHT_route_start (struct GNUNET_DHT_Handle *handle,
1132struct GNUNET_DHT_GetHandle * 1132struct GNUNET_DHT_GetHandle *
1133GNUNET_DHT_get_start (struct GNUNET_DHT_Handle *handle, 1133GNUNET_DHT_get_start (struct GNUNET_DHT_Handle *handle,
1134 struct GNUNET_TIME_Relative timeout, 1134 struct GNUNET_TIME_Relative timeout,
1135 uint32_t type, 1135 enum GNUNET_BLOCK_Type type,
1136 const GNUNET_HashCode * key, 1136 const GNUNET_HashCode * key,
1137 GNUNET_DHT_GetIterator iter, 1137 GNUNET_DHT_GetIterator iter,
1138 void *iter_cls, 1138 void *iter_cls,
@@ -1366,7 +1366,7 @@ GNUNET_DHT_find_peer_stop (struct GNUNET_DHT_FindPeerHandle *find_peer_handle,
1366void 1366void
1367GNUNET_DHT_put (struct GNUNET_DHT_Handle *handle, 1367GNUNET_DHT_put (struct GNUNET_DHT_Handle *handle,
1368 const GNUNET_HashCode * key, 1368 const GNUNET_HashCode * key,
1369 uint32_t type, 1369 enum GNUNET_BLOCK_Type type,
1370 uint32_t size, 1370 uint32_t size,
1371 const char *data, 1371 const char *data,
1372 struct GNUNET_TIME_Absolute exp, 1372 struct GNUNET_TIME_Absolute exp,
@@ -1422,3 +1422,5 @@ GNUNET_DHT_put (struct GNUNET_DHT_Handle *handle,
1422 1422
1423 GNUNET_free (put_msg); 1423 GNUNET_free (put_msg);
1424} 1424}
1425
1426/* end of dht_api.c */