aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_reclaim_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_reclaim_lib.h')
-rw-r--r--src/include/gnunet_reclaim_lib.h22
1 files changed, 14 insertions, 8 deletions
diff --git a/src/include/gnunet_reclaim_lib.h b/src/include/gnunet_reclaim_lib.h
index bbf1c3ad3..e4dec14fa 100644
--- a/src/include/gnunet_reclaim_lib.h
+++ b/src/include/gnunet_reclaim_lib.h
@@ -19,12 +19,15 @@
19 */ 19 */
20 20
21/** 21/**
22 * @addtogroup reclaim_suite RECLAIM services and libraries
23 * @{
24 *
22 * @author Martin Schanzenbach 25 * @author Martin Schanzenbach
23 * 26 *
24 * @file 27 * @file
25 * Identity attribute definitions 28 * Identity attribute definitions
26 * 29 *
27 * @defgroup reclaim-attribute reclaim attributes 30 * @defgroup reclaim-attribute Reclaim attributes
28 * @{ 31 * @{
29 */ 32 */
30#ifndef GNUNET_RECLAIM_ATTRIBUTE_LIB_H 33#ifndef GNUNET_RECLAIM_ATTRIBUTE_LIB_H
@@ -37,6 +40,7 @@ extern "C" {
37#endif 40#endif
38#endif 41#endif
39 42
43
40#include "gnunet_util_lib.h" 44#include "gnunet_util_lib.h"
41 45
42enum GNUNET_RECLAIM_AttributeType { 46enum GNUNET_RECLAIM_AttributeType {
@@ -512,7 +516,7 @@ GNUNET_RECLAIM_attribute_number_to_typename (uint32_t type);
512/** 516/**
513 * Get required size for serialization buffer 517 * Get required size for serialization buffer
514 * 518 *
515 * @param attrs the attribute list to serialize 519 * @param credentials the attribute list to serialize
516 * @return the required buffer size 520 * @return the required buffer size
517 */ 521 */
518size_t 522size_t
@@ -521,9 +525,9 @@ GNUNET_RECLAIM_credential_list_serialize_get_size (
521 525
522 526
523/** 527/**
524 * Destroy claim list 528 * Destroy credential list
525 * 529 *
526 * @param attrs list to destroy 530 * @param credentials list to destroy
527 */ 531 */
528void 532void
529GNUNET_RECLAIM_credential_list_destroy ( 533GNUNET_RECLAIM_credential_list_destroy (
@@ -548,15 +552,15 @@ GNUNET_RECLAIM_credential_list_add (
548 552
549 553
550/** 554/**
551 * Serialize an attribute list 555 * Serialize a credential list
552 * 556 *
553 * @param attrs the attribute list to serialize 557 * @param credentials the credential list to serialize
554 * @param result the serialized attribute 558 * @param result the serialized credential
555 * @return length of serialized data 559 * @return length of serialized data
556 */ 560 */
557size_t 561size_t
558GNUNET_RECLAIM_credential_list_serialize ( 562GNUNET_RECLAIM_credential_list_serialize (
559 const struct GNUNET_RECLAIM_CredentialList *attrs, 563 const struct GNUNET_RECLAIM_CredentialList *credentials,
560 char *result); 564 char *result);
561 565
562 566
@@ -858,4 +862,6 @@ GNUNET_RECLAIM_credential_get_presentation (
858 862
859/** @} */ /* end of group reclaim-attribute */ 863/** @} */ /* end of group reclaim-attribute */
860 864
865/** @} */ /* end of group addition */
866
861/* end of gnunet_reclaim_attribute_lib.h */ 867/* end of gnunet_reclaim_attribute_lib.h */