aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-05-24 20:41:58 +0200
committerChristian Grothoff <christian@grothoff.org>2022-05-24 20:41:58 +0200
commit6d8e48a1e98fb285f16052be585fdf8005a76473 (patch)
treee9aef8a7df284602e98e6ae44a10b2a824f6f4f6 /src/util
parent064499b6c26209e4be22a370f23e1cb6b680b615 (diff)
downloadgnunet-6d8e48a1e98fb285f16052be585fdf8005a76473.tar.gz
gnunet-6d8e48a1e98fb285f16052be585fdf8005a76473.zip
-modify mingling to preserve less structure, breaks protocol slightly...
Diffstat (limited to 'src/util')
-rw-r--r--src/util/container_bloomfilter.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/util/container_bloomfilter.c b/src/util/container_bloomfilter.c
index d89b46252..8a0487e04 100644
--- a/src/util/container_bloomfilter.c
+++ b/src/util/container_bloomfilter.c
@@ -358,11 +358,12 @@ make_empty_file (const struct GNUNET_DISK_FileHandle *fh, size_t size)
358 * @param cls closure 358 * @param cls closure
359 * @param bf the filter to manipulate 359 * @param bf the filter to manipulate
360 * @param bit the current bit 360 * @param bit the current bit
361 * @return GNUNET_YES to continue, GNUNET_NO to stop early 361 * @return #GNUNET_YES to continue, #GNUNET_NO to stop early
362 */ 362 */
363typedef int (*BitIterator) (void *cls, 363typedef int
364 const struct GNUNET_CONTAINER_BloomFilter *bf, 364(*BitIterator) (void *cls,
365 unsigned int bit); 365 const struct GNUNET_CONTAINER_BloomFilter *bf,
366 unsigned int bit);
366 367
367 368
368/** 369/**