aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_set_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_set_service.h')
-rw-r--r--src/include/gnunet_set_service.h16
1 files changed, 11 insertions, 5 deletions
diff --git a/src/include/gnunet_set_service.h b/src/include/gnunet_set_service.h
index 802a979cd..6874c9ec4 100644
--- a/src/include/gnunet_set_service.h
+++ b/src/include/gnunet_set_service.h
@@ -19,6 +19,9 @@
19 */ 19 */
20 20
21/** 21/**
22 * @addtogroup Sets
23 * @{
24 *
22 * @author Florian Dold 25 * @author Florian Dold
23 * @author Christian Grothoff 26 * @author Christian Grothoff
24 * 27 *
@@ -44,6 +47,7 @@ extern "C"
44#endif 47#endif
45#endif 48#endif
46 49
50
47#include "gnunet_common.h" 51#include "gnunet_common.h"
48#include "gnunet_time_lib.h" 52#include "gnunet_time_lib.h"
49#include "gnunet_configuration_lib.h" 53#include "gnunet_configuration_lib.h"
@@ -365,10 +369,10 @@ GNUNET_SET_add_element (struct GNUNET_SET_Handle *set,
365 369
366 370
367/** 371/**
368 * Remove an element to the given set. 372 * Remove an element to the given set.
369 * After the element has been removed (in the sense of the 373 * After the element has been removed (in the sense of the request
370 * request being transmitted to the set service), cont will be called. 374 * being transmitted to the set service), @a cont will be called.
371 * Calls to remove_element can be queued 375 * Multiple calls to GNUNET_SET_remove_element() can be queued
372 * 376 *
373 * @param set set to remove element from 377 * @param set set to remove element from
374 * @param element element to remove from the set 378 * @param element element to remove from the set
@@ -556,7 +560,7 @@ GNUNET_SET_element_dup (const struct GNUNET_SET_Element *element);
556 * Hash a set element. 560 * Hash a set element.
557 * 561 *
558 * @param element the element that should be hashed 562 * @param element the element that should be hashed
559 * @param ret_hash a pointer to where the hash of @a element 563 * @param[out] ret_hash a pointer to where the hash of @a element
560 * should be stored 564 * should be stored
561 */ 565 */
562void 566void
@@ -574,3 +578,5 @@ GNUNET_SET_element_hash (const struct GNUNET_SET_Element *element,
574#endif 578#endif
575 579
576/** @} */ /* end of group */ 580/** @} */ /* end of group */
581
582/** @} */ /* end of group addition */