aboutsummaryrefslogtreecommitdiff
path: root/src/consensus
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-03-23 23:29:49 +0000
committerChristian Grothoff <christian@grothoff.org>2013-03-23 23:29:49 +0000
commitd2a6a96a87f2bfd2b80f4c56bd6e4e9002dde1fa (patch)
tree1b218f092297e1e45eaea36e63adefbb8e266eb8 /src/consensus
parent74db1810919c40b1784fac5df99a63ac7eec659f (diff)
downloadgnunet-d2a6a96a87f2bfd2b80f4c56bd6e4e9002dde1fa.tar.gz
gnunet-d2a6a96a87f2bfd2b80f4c56bd6e4e9002dde1fa.zip
-doxygen fixes
Diffstat (limited to 'src/consensus')
-rw-r--r--src/consensus/ibf.c2
-rw-r--r--src/consensus/ibf.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/consensus/ibf.c b/src/consensus/ibf.c
index 2d2949334..87dbdd696 100644
--- a/src/consensus/ibf.c
+++ b/src/consensus/ibf.c
@@ -174,7 +174,7 @@ ibf_is_empty (struct InvertibleBloomFilter *ibf)
174 * @param ret_side sign of the cell's count where the decoded element came from. 174 * @param ret_side sign of the cell's count where the decoded element came from.
175 * A negative sign indicates that the element was recovered 175 * A negative sign indicates that the element was recovered
176 * resides in an IBF that was previously subtracted from. 176 * resides in an IBF that was previously subtracted from.
177 * @param ret_key receives the hash code of the decoded element, if successful 177 * @param ret_id receives the hash code of the decoded element, if successful
178 * @return GNUNET_YES if decoding an element was successful, 178 * @return GNUNET_YES if decoding an element was successful,
179 * GNUNET_NO if the IBF is empty, 179 * GNUNET_NO if the IBF is empty,
180 * GNUNET_SYSERR if the decoding has failed 180 * GNUNET_SYSERR if the decoding has failed
diff --git a/src/consensus/ibf.h b/src/consensus/ibf.h
index d6c3874aa..609653889 100644
--- a/src/consensus/ibf.h
+++ b/src/consensus/ibf.h
@@ -223,13 +223,13 @@ ibf_subtract (struct InvertibleBloomFilter *ibf1, const struct InvertibleBloomFi
223 * @param ret_side sign of the cell's count where the decoded element came from. 223 * @param ret_side sign of the cell's count where the decoded element came from.
224 * A negative sign indicates that the element was recovered 224 * A negative sign indicates that the element was recovered
225 * resides in an IBF that was previously subtracted from. 225 * resides in an IBF that was previously subtracted from.
226 * @param ret_key receives the hash code of the decoded element, if successful 226 * @param ret_id receives the hash code of the decoded element, if successful
227 * @return GNUNET_YES if decoding an element was successful, 227 * @return GNUNET_YES if decoding an element was successful,
228 * GNUNET_NO if the IBF is empty, 228 * GNUNET_NO if the IBF is empty,
229 * GNUNET_SYSERR if the decoding has failed 229 * GNUNET_SYSERR if the decoding has failed
230 */ 230 */
231int 231int
232ibf_decode (struct InvertibleBloomFilter *ibf, int *ret_side, struct IBF_Key *ret_key); 232ibf_decode (struct InvertibleBloomFilter *ibf, int *ret_side, struct IBF_Key *ret_id);
233 233
234 234
235/** 235/**