aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_container_lib.h
diff options
context:
space:
mode:
authorChristian Fuchs <christian.fuchs@cfuchs.net>2013-12-16 16:14:09 +0000
committerChristian Fuchs <christian.fuchs@cfuchs.net>2013-12-16 16:14:09 +0000
commitaa35fc15e22f972072d9e091b01e3a3c70e598f0 (patch)
treee089fbc23eaf185400193af8d1529b22b1570429 /src/include/gnunet_container_lib.h
parent11f1a50939e73ce6fd193518f17bbc99ee430264 (diff)
downloadgnunet-aa35fc15e22f972072d9e091b01e3a3c70e598f0.tar.gz
gnunet-aa35fc15e22f972072d9e091b01e3a3c70e598f0.zip
- finished work on multipart sending in intersection
- added getter for addressesPerElement from a bloomfilter - added multipart message format for intersection - added multipart message type for intersection
Diffstat (limited to 'src/include/gnunet_container_lib.h')
-rw-r--r--src/include/gnunet_container_lib.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/include/gnunet_container_lib.h b/src/include/gnunet_container_lib.h
index 6e782871a..03e3b4279 100644
--- a/src/include/gnunet_container_lib.h
+++ b/src/include/gnunet_container_lib.h
@@ -186,6 +186,15 @@ GNUNET_CONTAINER_bloomfilter_free (struct GNUNET_CONTAINER_BloomFilter *bf);
186 186
187 187
188/** 188/**
189 * Get the number of the addresses set per element in the bloom filter.
190 *
191 * @param bf the filter
192 * @return addresses set per element in the bf
193 */
194size_t
195GNUNET_CONTAINER_bloomfilter_get_element_addresses (const struct GNUNET_CONTAINER_BloomFilter *bf);
196
197/**
189 * @ingroup bloomfilter 198 * @ingroup bloomfilter
190 * Get size of the bloom filter. 199 * Get size of the bloom filter.
191 * 200 *