From 9bb8d23e1780731533cbdb69f6c756e1820ca3fe Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Sat, 22 Mar 2008 08:15:18 +0000 Subject: [PATCH] corrected some doxygen entries --- .../plugins/x509/ietf_attr_list.c | 7 ----- .../plugins/x509/ietf_attr_list.h | 28 +++++++------------ src/libstrongswan/plugins/x509/x509_ac.h | 2 +- src/libstrongswan/plugins/x509/x509_cert.h | 2 ++ 4 files changed, 13 insertions(+), 26 deletions(-) diff --git a/src/libstrongswan/plugins/x509/ietf_attr_list.c b/src/libstrongswan/plugins/x509/ietf_attr_list.c index 1ecadf679..b5ecb410e 100644 --- a/src/libstrongswan/plugins/x509/ietf_attr_list.c +++ b/src/libstrongswan/plugins/x509/ietf_attr_list.c @@ -1,10 +1,3 @@ -/** - * @file ietf_attr.c - * - * @brief Implementation of ietfAttr_t. - * - */ - /* * Copyright (C) 2007 Andreas Steffen, Hochschule fuer Technik Rapperswil * diff --git a/src/libstrongswan/plugins/x509/ietf_attr_list.h b/src/libstrongswan/plugins/x509/ietf_attr_list.h index 75407bbf6..e3e4add61 100644 --- a/src/libstrongswan/plugins/x509/ietf_attr_list.h +++ b/src/libstrongswan/plugins/x509/ietf_attr_list.h @@ -1,10 +1,3 @@ -/** - * @file ietf_attr_list.h - * - * @brief Handling of ietfAttr_t linked lists - * - */ - /* * Copyright (C) 2007 Andreas Steffen * @@ -19,6 +12,13 @@ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. + * + * $Id$ + */ + +/** + * @defgroup ietf_attr_list ietf_attr_list + * @{ @ingroup x509_p */ #ifndef IETF_ATTR_LIST_H_ @@ -34,8 +34,6 @@ * @param list_a first alphabetically-sorted list * @param list_b second alphabetically-sorted list * @return TRUE if equal - * - * @ingroup crypto */ bool ietfAttr_list_equals(linked_list_t *list_a, linked_list_t *list_b); @@ -43,9 +41,7 @@ bool ietfAttr_list_equals(linked_list_t *list_a, linked_list_t *list_b); * @brief Lists a linked list of ietfAttr_t objects * * @param list alphabetically-sorted linked list of attributes - @param out output file - * - * @ingroup crypto + * @param out output file */ void ietfAttr_list_list(linked_list_t *list, FILE *out); @@ -54,9 +50,7 @@ void ietfAttr_list_list(linked_list_t *list, FILE *out); * * @param msg string with comma-separated group names * @param list alphabetically-sorted linked list of attributes - * - * @ingroup crypto - */ + */ void ietfAttr_list_create_from_string(char *msg, linked_list_t *list); /** @@ -80,10 +74,8 @@ chunk_t ietfAttr_list_encode(linked_list_t *list); * @brief Destroys a linked list of ietfAttr_t objects * * @param list list to be destroyed - * - * @ingroup crypto */ void ietfAttr_list_destroy(linked_list_t *list); -#endif /* IETF_ATTR_LIST_H_ */ +#endif /* IETF_ATTR_LIST_H_ @}*/ diff --git a/src/libstrongswan/plugins/x509/x509_ac.h b/src/libstrongswan/plugins/x509/x509_ac.h index 709e4531a..2fd165e45 100644 --- a/src/libstrongswan/plugins/x509/x509_ac.h +++ b/src/libstrongswan/plugins/x509/x509_ac.h @@ -31,7 +31,7 @@ typedef struct x509_ac_t x509_ac_t; /** - * Implementation of ocsp_request_t using own ASN1 parser. + * Implementation of ac_t using own ASN1 parser. */ struct x509_ac_t { diff --git a/src/libstrongswan/plugins/x509/x509_cert.h b/src/libstrongswan/plugins/x509/x509_cert.h index be6e41b4d..e24fc8ed1 100644 --- a/src/libstrongswan/plugins/x509/x509_cert.h +++ b/src/libstrongswan/plugins/x509/x509_cert.h @@ -11,6 +11,8 @@ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. + * + * $Id$ */ /**