aboutsummaryrefslogtreecommitdiff
path: root/src/dht/gnunet-service-dht.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dht/gnunet-service-dht.c')
-rw-r--r--src/dht/gnunet-service-dht.c23
1 files changed, 1 insertions, 22 deletions
diff --git a/src/dht/gnunet-service-dht.c b/src/dht/gnunet-service-dht.c
index a2ba2e8b0..f2b922dc4 100644
--- a/src/dht/gnunet-service-dht.c
+++ b/src/dht/gnunet-service-dht.c
@@ -39,27 +39,6 @@
39#include "gnunet-service-dht_nse.h" 39#include "gnunet-service-dht_nse.h"
40#include "gnunet-service-dht_routing.h" 40#include "gnunet-service-dht_routing.h"
41 41
42
43/**
44 * Handle for the statistics service.
45 */
46struct GNUNET_STATISTICS_Handle *GDS_stats;
47
48/**
49 * Handle for the service.
50 */
51struct GNUNET_SERVICE_Handle *GDS_service;
52
53/**
54 * Our handle to the BLOCK library.
55 */
56struct GNUNET_BLOCK_Context *GDS_block_context;
57
58/**
59 * The configuration the DHT service is running with
60 */
61const struct GNUNET_CONFIGURATION_Handle *GDS_cfg;
62
63/** 42/**
64 * Our HELLO 43 * Our HELLO
65 */ 44 */
@@ -180,7 +159,7 @@ run (void *cls,
180 159
181 160
182/* Finally, define the main method */ 161/* Finally, define the main method */
183GDS_DHT_SERVICE_INIT(&run); 162GDS_DHT_SERVICE_INIT("dht", &run);
184 163
185 164
186 165