aboutsummaryrefslogtreecommitdiff
path: root/src/dht/gnunet-service-dht_datacache.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dht/gnunet-service-dht_datacache.c')
-rw-r--r--src/dht/gnunet-service-dht_datacache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dht/gnunet-service-dht_datacache.c b/src/dht/gnunet-service-dht_datacache.c
index 4d1dd6f68..b2cb93d12 100644
--- a/src/dht/gnunet-service-dht_datacache.c
+++ b/src/dht/gnunet-service-dht_datacache.c
@@ -74,7 +74,7 @@ struct DHTPutEntry
74 */ 74 */
75void 75void
76GDS_DATACACHE_handle_put (struct GNUNET_TIME_Absolute expiration, 76GDS_DATACACHE_handle_put (struct GNUNET_TIME_Absolute expiration,
77 const GNUNET_HashCode * key, 77 const struct GNUNET_HashCode * key,
78 unsigned int put_path_length, 78 unsigned int put_path_length,
79 const struct GNUNET_PeerIdentity *put_path, 79 const struct GNUNET_PeerIdentity *put_path,
80 enum GNUNET_BLOCK_Type type, size_t data_size, 80 enum GNUNET_BLOCK_Type type, size_t data_size,
@@ -131,7 +131,7 @@ struct GetRequestContext
131 /** 131 /**
132 * The key this request was about 132 * The key this request was about
133 */ 133 */
134 GNUNET_HashCode key; 134 struct GNUNET_HashCode key;
135 135
136 /** 136 /**
137 * Number of bytes in xquery. 137 * Number of bytes in xquery.
@@ -165,7 +165,7 @@ struct GetRequestContext
165 */ 165 */
166static int 166static int
167datacache_get_iterator (void *cls, struct GNUNET_TIME_Absolute exp, 167datacache_get_iterator (void *cls, struct GNUNET_TIME_Absolute exp,
168 const GNUNET_HashCode * key, size_t size, 168 const struct GNUNET_HashCode * key, size_t size,
169 const char *data, enum GNUNET_BLOCK_Type type) 169 const char *data, enum GNUNET_BLOCK_Type type)
170{ 170{
171 struct GetRequestContext *ctx = cls; 171 struct GetRequestContext *ctx = cls;
@@ -255,7 +255,7 @@ datacache_get_iterator (void *cls, struct GNUNET_TIME_Absolute exp,
255 * @return evaluation result for the local replies 255 * @return evaluation result for the local replies
256 */ 256 */
257enum GNUNET_BLOCK_EvaluationResult 257enum GNUNET_BLOCK_EvaluationResult
258GDS_DATACACHE_handle_get (const GNUNET_HashCode * key, 258GDS_DATACACHE_handle_get (const struct GNUNET_HashCode * key,
259 enum GNUNET_BLOCK_Type type, const void *xquery, 259 enum GNUNET_BLOCK_Type type, const void *xquery,
260 size_t xquery_size, 260 size_t xquery_size,
261 struct GNUNET_CONTAINER_BloomFilter **reply_bf, 261 struct GNUNET_CONTAINER_BloomFilter **reply_bf,