aboutsummaryrefslogtreecommitdiff
path: root/src/dht/gnunet-service-xdht.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dht/gnunet-service-xdht.c')
-rw-r--r--src/dht/gnunet-service-xdht.c121
1 files changed, 0 insertions, 121 deletions
diff --git a/src/dht/gnunet-service-xdht.c b/src/dht/gnunet-service-xdht.c
deleted file mode 100644
index 7d0cb8a3a..000000000
--- a/src/dht/gnunet-service-xdht.c
+++ /dev/null
@@ -1,121 +0,0 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2009, 2010, 2011 GNUnet e.V.
4
5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 3, or (at your
8 option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
19*/
20/**
21 * @file dht/gnunet-service-xdht.c
22 * @brief GNUnet DHT service
23 * @author Christian Grothoff
24 * @author Nathan Evans
25 */
26#include "platform.h"
27#include "gnunet_block_lib.h"
28#include "gnunet_util_lib.h"
29#include "gnunet_transport_service.h"
30#include "gnunet_hello_lib.h"
31#include "gnunet_dht_service.h"
32#include "gnunet_statistics_service.h"
33#include "gnunet-service-dht.h"
34#include "gnunet-service-dht_datacache.h"
35#include "gnunet-service-dht_neighbours.h"
36#include "gnunet-service-dht_nse.h"
37#include "gnunet-service-xdht_routing.h"
38
39
40/**
41 * Should we store our topology predecessor and successor IDs into statistics?
42 */
43extern unsigned int track_topology;
44
45
46/* Code shared between different DHT implementations */
47#include "gnunet-service-dht_clients.c"
48
49
50/**
51 * Task run during shutdown.
52 *
53 * @param cls unused
54 */
55static void
56shutdown_task (void *cls)
57{
58 GDS_NEIGHBOURS_done ();
59 GDS_DATACACHE_done ();
60 GDS_ROUTING_done ();
61 GDS_NSE_done ();
62 if (NULL != GDS_block_context)
63 {
64 GNUNET_BLOCK_context_destroy (GDS_block_context);
65 GDS_block_context = NULL;
66 }
67 if (NULL != GDS_stats)
68 {
69 GNUNET_STATISTICS_destroy (GDS_stats, GNUNET_YES);
70 GDS_stats = NULL;
71 }
72 GDS_CLIENTS_stop ();
73}
74
75
76/**
77 * Process dht requests.
78 *
79 * @param cls closure
80 * @param c configuration to use
81 * @param service the initialized service
82 */
83static void
84run (void *cls,
85 const struct GNUNET_CONFIGURATION_Handle *c,
86 struct GNUNET_SERVICE_Handle *service)
87{
88 unsigned long long _track_topology;
89
90 GDS_cfg = c;
91 GDS_service = service;
92 GDS_block_context = GNUNET_BLOCK_context_create (GDS_cfg);
93 GDS_stats = GNUNET_STATISTICS_create ("dht",
94 GDS_cfg);
95 GDS_ROUTING_init ();
96 GDS_NSE_init ();
97 GDS_DATACACHE_init ();
98 GDS_CLIENTS_init ();
99 if (GNUNET_OK ==
100 GNUNET_CONFIGURATION_get_value_number (c,
101 "xdht",
102 "track_toplogy",
103 &_track_topology))
104 {
105 track_topology = (unsigned int) _track_topology;
106 }
107 GNUNET_SCHEDULER_add_shutdown (&shutdown_task,
108 NULL);
109 if (GNUNET_OK != GDS_NEIGHBOURS_init ())
110 {
111 GNUNET_SCHEDULER_shutdown ();
112 return;
113 }
114}
115
116
117/* Finally, define the main method */
118GDS_DHT_SERVICE_INIT("xdht", &run);
119
120
121/* end of gnunet-service-xdht.c */