aboutsummaryrefslogtreecommitdiff
path: root/src/dht/gnunet-service-wdht_neighbours.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dht/gnunet-service-wdht_neighbours.h')
-rw-r--r--src/dht/gnunet-service-wdht_neighbours.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/dht/gnunet-service-wdht_neighbours.h b/src/dht/gnunet-service-wdht_neighbours.h
index f080258bb..8461d16e8 100644
--- a/src/dht/gnunet-service-wdht_neighbours.h
+++ b/src/dht/gnunet-service-wdht_neighbours.h
@@ -71,7 +71,7 @@ GDS_NEIGHBOURS_handle_get (const struct GNUNET_HashCode *key,
71/** 71/**
72 * Send the get result to requesting client. 72 * Send the get result to requesting client.
73 * 73 *
74 * @param trail_id trail identifying where to send the result to, NULL for us 74 * @param cls a `const struct GNUNET_HashCode *` trail identifying where to send the result to, NULL for us
75 * @param options routing options (from GET request) 75 * @param options routing options (from GET request)
76 * @param key key of the requested data. 76 * @param key key of the requested data.
77 * @param type block type 77 * @param type block type
@@ -82,14 +82,15 @@ GDS_NEIGHBOURS_handle_get (const struct GNUNET_HashCode *key,
82 * @param data_size size of the @a data 82 * @param data_size size of the @a data
83 */ 83 */
84void 84void
85GDS_NEIGHBOURS_send_get_result (const struct GNUNET_HashCode *trail_id, 85GDS_NEIGHBOURS_send_get_result (void *cls,
86 enum GNUNET_DHT_RouteOption options, 86 enum GNUNET_DHT_RouteOption options,
87 const struct GNUNET_HashCode *key, 87 const struct GNUNET_HashCode *key,
88 enum GNUNET_BLOCK_Type type, 88 enum GNUNET_BLOCK_Type type,
89 unsigned int put_path_length, 89 unsigned int put_path_length,
90 const struct GNUNET_PeerIdentity *put_path, 90 const struct GNUNET_PeerIdentity *put_path,
91 struct GNUNET_TIME_Absolute expiration, 91 struct GNUNET_TIME_Absolute expiration,
92 const void *data, size_t data_size); 92 const void *data,
93 size_t data_size);
93 94
94 95
95/** 96/**