aboutsummaryrefslogtreecommitdiff
path: root/src/dht/gnunet-service-dht.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dht/gnunet-service-dht.h')
-rw-r--r--src/dht/gnunet-service-dht.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/dht/gnunet-service-dht.h b/src/dht/gnunet-service-dht.h
index a1513fcce..5507dcea0 100644
--- a/src/dht/gnunet-service-dht.h
+++ b/src/dht/gnunet-service-dht.h
@@ -149,7 +149,7 @@ GDS_u_hold (struct GDS_Underlay *u,
149 * @return true on success, false on failures 149 * @return true on success, false on failures
150 */ 150 */
151bool 151bool
152GDS_CLIENTS_handle_reply (const struct GDS_DATACACHE_BlockData *bd, 152GDS_CLIENTS_handle_reply (const struct GNUNET_DATACACHE_Block *bd,
153 const struct GNUNET_HashCode *query_hash, 153 const struct GNUNET_HashCode *query_hash,
154 unsigned int get_path_length, 154 unsigned int get_path_length,
155 const struct GNUNET_DHT_PathElement *get_path); 155 const struct GNUNET_DHT_PathElement *get_path);
@@ -186,7 +186,7 @@ GDS_CLIENTS_process_get (enum GNUNET_DHT_RouteOption options,
186 * @param get_path_length number of entries in @a get_path. 186 * @param get_path_length number of entries in @a get_path.
187 */ 187 */
188void 188void
189GDS_CLIENTS_process_get_resp (const struct GDS_DATACACHE_BlockData *bd, 189GDS_CLIENTS_process_get_resp (const struct GNUNET_DATACACHE_Block *bd,
190 const struct GNUNET_DHT_PathElement *get_path, 190 const struct GNUNET_DHT_PathElement *get_path,
191 unsigned int get_path_length); 191 unsigned int get_path_length);
192 192
@@ -196,14 +196,12 @@ GDS_CLIENTS_process_get_resp (const struct GDS_DATACACHE_BlockData *bd,
196 * them in that case. The @a path should include our own 196 * them in that case. The @a path should include our own
197 * peer ID (if recorded). 197 * peer ID (if recorded).
198 * 198 *
199 * @param options routing options to apply
200 * @param bd details about the block 199 * @param bd details about the block
201 * @param hop_count Hop count so far. 200 * @param hop_count Hop count so far.
202 * @param desired_replication_level Desired replication level. 201 * @param desired_replication_level Desired replication level.
203 */ 202 */
204void 203void
205GDS_CLIENTS_process_put (enum GNUNET_DHT_RouteOption options, 204GDS_CLIENTS_process_put (const struct GNUNET_DATACACHE_Block *bd,
206 const struct GDS_DATACACHE_BlockData *bd,
207 uint32_t hop_count, 205 uint32_t hop_count,
208 uint32_t desired_replication_level); 206 uint32_t desired_replication_level);
209 207