aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/gnunet-service-mesh_dht.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesh/gnunet-service-mesh_dht.c')
-rw-r--r--src/mesh/gnunet-service-mesh_dht.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesh/gnunet-service-mesh_dht.c b/src/mesh/gnunet-service-mesh_dht.c
index 168706dcd..0e27eb9fa 100644
--- a/src/mesh/gnunet-service-mesh_dht.c
+++ b/src/mesh/gnunet-service-mesh_dht.c
@@ -110,6 +110,8 @@ static struct GNUNET_CONTAINER_MultiHashMap32 *get_requests;
110 * to obtain a local peer -> destination path and interning the peer ids. 110 * to obtain a local peer -> destination path and interning the peer ids.
111 * 111 *
112 * @return Newly allocated and created path 112 * @return Newly allocated and created path
113 *
114 * FIXME refactor and use build_path_from_peer_ids
113 */ 115 */
114static struct MeshPeerPath * 116static struct MeshPeerPath *
115path_build_from_dht (const struct GNUNET_PeerIdentity *get_path, 117path_build_from_dht (const struct GNUNET_PeerIdentity *get_path,
@@ -269,7 +271,7 @@ announce_id (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
269} 271}
270 272
271/** 273/**
272 * Iterator over hash map entries and stop GET requests before disconnecting 274 * Iterator over hash map entries and stop GET requests before disconnecting
273 * from the DHT. 275 * from the DHT.
274 * 276 *
275 * @param cls Closure (unused) 277 * @param cls Closure (unused)
@@ -389,4 +391,4 @@ GMD_search_stop (struct GMD_search_handle *h)
389 h->peer_id, h)); 391 h->peer_id, h));
390 GNUNET_DHT_get_stop (h->dhtget); 392 GNUNET_DHT_get_stop (h->dhtget);
391 GNUNET_free (h); 393 GNUNET_free (h);
392} \ No newline at end of file 394}