aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_block_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_block_lib.h')
-rw-r--r--src/include/gnunet_block_lib.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/gnunet_block_lib.h b/src/include/gnunet_block_lib.h
index adc17751d..41001fb0b 100644
--- a/src/include/gnunet_block_lib.h
+++ b/src/include/gnunet_block_lib.h
@@ -160,8 +160,8 @@ struct GNUNET_BLOCK_Context;
160 * @param hc where to store the result. 160 * @param hc where to store the result.
161 */ 161 */
162void 162void
163GNUNET_BLOCK_mingle_hash (const GNUNET_HashCode * in, uint32_t mingle_number, 163GNUNET_BLOCK_mingle_hash (const struct GNUNET_HashCode * in, uint32_t mingle_number,
164 GNUNET_HashCode * hc); 164 struct GNUNET_HashCode * hc);
165 165
166 166
167/** 167/**
@@ -204,7 +204,7 @@ GNUNET_BLOCK_context_destroy (struct GNUNET_BLOCK_Context *ctx);
204enum GNUNET_BLOCK_EvaluationResult 204enum GNUNET_BLOCK_EvaluationResult
205GNUNET_BLOCK_evaluate (struct GNUNET_BLOCK_Context *ctx, 205GNUNET_BLOCK_evaluate (struct GNUNET_BLOCK_Context *ctx,
206 enum GNUNET_BLOCK_Type type, 206 enum GNUNET_BLOCK_Type type,
207 const GNUNET_HashCode * query, 207 const struct GNUNET_HashCode * query,
208 struct GNUNET_CONTAINER_BloomFilter **bf, 208 struct GNUNET_CONTAINER_BloomFilter **bf,
209 int32_t bf_mutator, const void *xquery, 209 int32_t bf_mutator, const void *xquery,
210 size_t xquery_size, const void *reply_block, 210 size_t xquery_size, const void *reply_block,
@@ -227,7 +227,7 @@ GNUNET_BLOCK_evaluate (struct GNUNET_BLOCK_Context *ctx,
227int 227int
228GNUNET_BLOCK_get_key (struct GNUNET_BLOCK_Context *ctx, 228GNUNET_BLOCK_get_key (struct GNUNET_BLOCK_Context *ctx,
229 enum GNUNET_BLOCK_Type type, const void *block, 229 enum GNUNET_BLOCK_Type type, const void *block,
230 size_t block_size, GNUNET_HashCode * key); 230 size_t block_size, struct GNUNET_HashCode * key);
231 231
232 232
233 233
@@ -243,7 +243,7 @@ GNUNET_BLOCK_get_key (struct GNUNET_BLOCK_Context *ctx,
243 */ 243 */
244struct GNUNET_CONTAINER_BloomFilter * 244struct GNUNET_CONTAINER_BloomFilter *
245GNUNET_BLOCK_construct_bloomfilter (int32_t bf_mutator, 245GNUNET_BLOCK_construct_bloomfilter (int32_t bf_mutator,
246 const GNUNET_HashCode * seen_results, 246 const struct GNUNET_HashCode * seen_results,
247 unsigned int seen_results_count); 247 unsigned int seen_results_count);
248 248
249 249