aboutsummaryrefslogtreecommitdiff
path: root/src/block/block.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/block.c')
-rw-r--r--src/block/block.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/block/block.c b/src/block/block.c
index 51dab783d..344038d6e 100644
--- a/src/block/block.c
+++ b/src/block/block.c
@@ -78,10 +78,10 @@ struct GNUNET_BLOCK_Context
78 * @param hc where to store the result. 78 * @param hc where to store the result.
79 */ 79 */
80void 80void
81GNUNET_BLOCK_mingle_hash (const GNUNET_HashCode * in, uint32_t mingle_number, 81GNUNET_BLOCK_mingle_hash (const struct GNUNET_HashCode * in, uint32_t mingle_number,
82 GNUNET_HashCode * hc) 82 struct GNUNET_HashCode * hc)
83{ 83{
84 GNUNET_HashCode m; 84 struct GNUNET_HashCode m;
85 85
86 GNUNET_CRYPTO_hash (&mingle_number, sizeof (uint32_t), &m); 86 GNUNET_CRYPTO_hash (&mingle_number, sizeof (uint32_t), &m);
87 GNUNET_CRYPTO_hash_xor (&m, in, hc); 87 GNUNET_CRYPTO_hash_xor (&m, in, hc);
@@ -204,7 +204,7 @@ find_plugin (struct GNUNET_BLOCK_Context *ctx, enum GNUNET_BLOCK_Type type)
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,
@@ -233,7 +233,7 @@ GNUNET_BLOCK_evaluate (struct GNUNET_BLOCK_Context *ctx,
233int 233int
234GNUNET_BLOCK_get_key (struct GNUNET_BLOCK_Context *ctx, 234GNUNET_BLOCK_get_key (struct GNUNET_BLOCK_Context *ctx,
235 enum GNUNET_BLOCK_Type type, const void *block, 235 enum GNUNET_BLOCK_Type type, const void *block,
236 size_t block_size, GNUNET_HashCode * key) 236 size_t block_size, struct GNUNET_HashCode * key)
237{ 237{
238 struct GNUNET_BLOCK_PluginFunctions *plugin = find_plugin (ctx, type); 238 struct GNUNET_BLOCK_PluginFunctions *plugin = find_plugin (ctx, type);
239 239
@@ -285,11 +285,11 @@ compute_bloomfilter_size (unsigned int entry_count)
285 */ 285 */
286struct GNUNET_CONTAINER_BloomFilter * 286struct GNUNET_CONTAINER_BloomFilter *
287GNUNET_BLOCK_construct_bloomfilter (int32_t bf_mutator, 287GNUNET_BLOCK_construct_bloomfilter (int32_t bf_mutator,
288 const GNUNET_HashCode * seen_results, 288 const struct GNUNET_HashCode * seen_results,
289 unsigned int seen_results_count) 289 unsigned int seen_results_count)
290{ 290{
291 struct GNUNET_CONTAINER_BloomFilter *bf; 291 struct GNUNET_CONTAINER_BloomFilter *bf;
292 GNUNET_HashCode mhash; 292 struct GNUNET_HashCode mhash;
293 unsigned int i; 293 unsigned int i;
294 size_t nsize; 294 size_t nsize;
295 295