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.h27
1 files changed, 12 insertions, 15 deletions
diff --git a/src/dht/gnunet-service-dht_routing.h b/src/dht/gnunet-service-dht_routing.h
index a2576a3bb..9b12c71de 100644
--- a/src/dht/gnunet-service-dht_routing.h
+++ b/src/dht/gnunet-service-dht_routing.h
@@ -50,14 +50,12 @@
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 GNUNET_HashCode *key, 54 const GNUNET_HashCode * key, unsigned int put_path_length,
55 unsigned int put_path_length, 55 const struct GNUNET_PeerIdentity *put_path,
56 const struct GNUNET_PeerIdentity *put_path, 56 unsigned int get_path_length,
57 unsigned int get_path_length, 57 const struct GNUNET_PeerIdentity *get_path,
58 const struct GNUNET_PeerIdentity *get_path, 58 const void *data, size_t data_size);
59 const void *data,
60 size_t data_size);
61 59
62 60
63/** 61/**
@@ -74,13 +72,12 @@ GDS_ROUTING_process (enum GNUNET_BLOCK_Type type,
74*/ 72*/
75void 73void
76GDS_ROUTING_add (const struct GNUNET_PeerIdentity *sender, 74GDS_ROUTING_add (const struct GNUNET_PeerIdentity *sender,
77 enum GNUNET_BLOCK_Type type, 75 enum GNUNET_BLOCK_Type type,
78 enum GNUNET_DHT_RouteOption options, 76 enum GNUNET_DHT_RouteOption options,
79 const GNUNET_HashCode *key, 77 const GNUNET_HashCode * key, const void *xquery,
80 const void *xquery, 78 size_t xquery_size,
81 size_t xquery_size, 79 const struct GNUNET_CONTAINER_BloomFilter *reply_bf,
82 const struct GNUNET_CONTAINER_BloomFilter *reply_bf, 80 uint32_t reply_bf_mutator);
83 uint32_t reply_bf_mutator);
84 81
85 82
86/** 83/**