aboutsummaryrefslogtreecommitdiff
path: root/src/dht/gnunet-service-dht_routing.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dht/gnunet-service-dht_routing.h')
-rw-r--r--src/dht/gnunet-service-dht_routing.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/dht/gnunet-service-dht_routing.h b/src/dht/gnunet-service-dht_routing.h
index ace6b9c0c..7fea01bae 100644
--- a/src/dht/gnunet-service-dht_routing.h
+++ b/src/dht/gnunet-service-dht_routing.h
@@ -49,15 +49,15 @@
49 * @param data_size number of bytes in @a data 49 * @param data_size number of bytes in @a data
50 */ 50 */
51void 51void
52GDS_ROUTING_process(enum GNUNET_BLOCK_Type type, 52GDS_ROUTING_process (enum GNUNET_BLOCK_Type type,
53 struct GNUNET_TIME_Absolute expiration_time, 53 struct GNUNET_TIME_Absolute expiration_time,
54 const struct GNUNET_HashCode *key, 54 const struct GNUNET_HashCode *key,
55 unsigned int put_path_length, 55 unsigned int put_path_length,
56 const struct GNUNET_PeerIdentity *put_path, 56 const struct GNUNET_PeerIdentity *put_path,
57 unsigned int get_path_length, 57 unsigned int get_path_length,
58 const struct GNUNET_PeerIdentity *get_path, 58 const struct GNUNET_PeerIdentity *get_path,
59 const void *data, 59 const void *data,
60 size_t data_size); 60 size_t data_size);
61 61
62 62
63/** 63/**
@@ -72,26 +72,26 @@ GDS_ROUTING_process(enum GNUNET_BLOCK_Type type,
72 * @param xquery_size number of bytes in @a xquery 72 * @param xquery_size number of bytes in @a xquery
73 */ 73 */
74void 74void
75GDS_ROUTING_add(const struct GNUNET_PeerIdentity *sender, 75GDS_ROUTING_add (const struct GNUNET_PeerIdentity *sender,
76 enum GNUNET_BLOCK_Type type, 76 enum GNUNET_BLOCK_Type type,
77 struct GNUNET_BLOCK_Group *bg, 77 struct GNUNET_BLOCK_Group *bg,
78 enum GNUNET_DHT_RouteOption options, 78 enum GNUNET_DHT_RouteOption options,
79 const struct GNUNET_HashCode * key, 79 const struct GNUNET_HashCode *key,
80 const void *xquery, 80 const void *xquery,
81 size_t xquery_size); 81 size_t xquery_size);
82 82
83 83
84/** 84/**
85 * Initialize routing subsystem. 85 * Initialize routing subsystem.
86 */ 86 */
87void 87void
88GDS_ROUTING_init(void); 88GDS_ROUTING_init (void);
89 89
90 90
91/** 91/**
92 * Shutdown routing subsystem. 92 * Shutdown routing subsystem.
93 */ 93 */
94void 94void
95GDS_ROUTING_done(void); 95GDS_ROUTING_done (void);
96 96
97#endif 97#endif