- begin work on enhanced multipart receiving
[oweals/gnunet.git] / src / mesh / gnunet-service-mesh_dht.h
index c19cba8b9acb97ca3a6bbbd687dd7af58a6a4f33..179e7b4fce2d9b7058a43072245cd64719b7c268 100644 (file)
@@ -40,6 +40,18 @@ extern "C"
 #include "platform.h"
 #include "gnunet_util_lib.h"
 
+struct GMD_search_handle;
+
+
+/**
+ * Callback called on each path found over the DHT.
+ *
+ * @param cls Closure.
+ * @param path An unchecked, unoptimized path to the target node.
+ *             After callback will no longer be valid!
+ */
+typedef void (*GMD_search_callback) (void *cls,
+                                     const struct MeshPeerPath *path);
 
 /******************************************************************************/
 /********************************    API    ***********************************/
@@ -49,11 +61,9 @@ extern "C"
  * Initialize the DHT subsystem.
  *
  * @param c Configuration.
- * @param peer_id Local peer ID (must remain valid during all execution time).
  */
 void
-GMD_init (const struct GNUNET_CONFIGURATION_Handle *c,
-          struct GNUNET_PeerIdentity *peer_id);
+GMD_init (const struct GNUNET_CONFIGURATION_Handle *c);
 
 /**
  * Shut down the DHT subsystem.
@@ -61,6 +71,15 @@ GMD_init (const struct GNUNET_CONFIGURATION_Handle *c,
 void
 GMD_shutdown (void);
 
+
+struct GMD_search_handle *
+GMD_search (const struct GNUNET_PeerIdentity *peer_id,
+            GMD_search_callback callback, void *cls);
+
+
+void
+GMD_search_stop (struct GMD_search_handle *h);
+
 #if 0                           /* keep Emacsens' auto-indent happy */
 {
 #endif