aboutsummaryrefslogtreecommitdiff
path: root/src/cadet/gnunet-service-cadet_dht.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cadet/gnunet-service-cadet_dht.h')
-rw-r--r--src/cadet/gnunet-service-cadet_dht.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/cadet/gnunet-service-cadet_dht.h b/src/cadet/gnunet-service-cadet_dht.h
index 6cac531ff..85cb6ea24 100644
--- a/src/cadet/gnunet-service-cadet_dht.h
+++ b/src/cadet/gnunet-service-cadet_dht.h
@@ -40,7 +40,7 @@ extern "C"
40#include "platform.h" 40#include "platform.h"
41#include "gnunet_util_lib.h" 41#include "gnunet_util_lib.h"
42 42
43struct GMD_search_handle; 43struct GCD_search_handle;
44 44
45 45
46/** 46/**
@@ -50,7 +50,7 @@ struct GMD_search_handle;
50 * @param path An unchecked, unoptimized path to the target node. 50 * @param path An unchecked, unoptimized path to the target node.
51 * After callback will no longer be valid! 51 * After callback will no longer be valid!
52 */ 52 */
53typedef void (*GMD_search_callback) (void *cls, 53typedef void (*GCD_search_callback) (void *cls,
54 const struct CadetPeerPath *path); 54 const struct CadetPeerPath *path);
55 55
56/******************************************************************************/ 56/******************************************************************************/
@@ -63,22 +63,22 @@ typedef void (*GMD_search_callback) (void *cls,
63 * @param c Configuration. 63 * @param c Configuration.
64 */ 64 */
65void 65void
66GMD_init (const struct GNUNET_CONFIGURATION_Handle *c); 66GCD_init (const struct GNUNET_CONFIGURATION_Handle *c);
67 67
68/** 68/**
69 * Shut down the DHT subsystem. 69 * Shut down the DHT subsystem.
70 */ 70 */
71void 71void
72GMD_shutdown (void); 72GCD_shutdown (void);
73 73
74 74
75struct GMD_search_handle * 75struct GCD_search_handle *
76GMD_search (const struct GNUNET_PeerIdentity *peer_id, 76GCD_search (const struct GNUNET_PeerIdentity *peer_id,
77 GMD_search_callback callback, void *cls); 77 GCD_search_callback callback, void *cls);
78 78
79 79
80void 80void
81GMD_search_stop (struct GMD_search_handle *h); 81GCD_search_stop (struct GCD_search_handle *h);
82 82
83#if 0 /* keep Emacsens' auto-indent happy */ 83#if 0 /* keep Emacsens' auto-indent happy */
84{ 84{