corrected some doxygen entries

This commit is contained in:
Andreas Steffen
2008-03-22 08:15:18 +00:00
parent 855606efd4
commit 9bb8d23e17
4 changed files with 13 additions and 26 deletions
@@ -1,10 +1,3 @@
/**
* @file ietf_attr.c
*
* @brief Implementation of ietfAttr_t.
*
*/
/* /*
* Copyright (C) 2007 Andreas Steffen, Hochschule fuer Technik Rapperswil * Copyright (C) 2007 Andreas Steffen, Hochschule fuer Technik Rapperswil
* *
+10 -18
View File
@@ -1,10 +1,3 @@
/**
* @file ietf_attr_list.h
*
* @brief Handling of ietfAttr_t linked lists
*
*/
/* /*
* Copyright (C) 2007 Andreas Steffen * Copyright (C) 2007 Andreas Steffen
* *
@@ -19,6 +12,13 @@
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details. * for more details.
*
* $Id$
*/
/**
* @defgroup ietf_attr_list ietf_attr_list
* @{ @ingroup x509_p
*/ */
#ifndef IETF_ATTR_LIST_H_ #ifndef IETF_ATTR_LIST_H_
@@ -34,8 +34,6 @@
* @param list_a first alphabetically-sorted list * @param list_a first alphabetically-sorted list
* @param list_b second alphabetically-sorted list * @param list_b second alphabetically-sorted list
* @return TRUE if equal * @return TRUE if equal
*
* @ingroup crypto
*/ */
bool ietfAttr_list_equals(linked_list_t *list_a, linked_list_t *list_b); 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 * @brief Lists a linked list of ietfAttr_t objects
* *
* @param list alphabetically-sorted linked list of attributes * @param list alphabetically-sorted linked list of attributes
@param out output file * @param out output file
*
* @ingroup crypto
*/ */
void ietfAttr_list_list(linked_list_t *list, FILE *out); 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 msg string with comma-separated group names
* @param list alphabetically-sorted linked list of attributes * @param list alphabetically-sorted linked list of attributes
* */
* @ingroup crypto
*/
void ietfAttr_list_create_from_string(char *msg, linked_list_t *list); 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 * @brief Destroys a linked list of ietfAttr_t objects
* *
* @param list list to be destroyed * @param list list to be destroyed
*
* @ingroup crypto
*/ */
void ietfAttr_list_destroy(linked_list_t *list); void ietfAttr_list_destroy(linked_list_t *list);
#endif /* IETF_ATTR_LIST_H_ */ #endif /* IETF_ATTR_LIST_H_ @}*/
+1 -1
View File
@@ -31,7 +31,7 @@
typedef struct x509_ac_t x509_ac_t; 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 { struct x509_ac_t {
@@ -11,6 +11,8 @@
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details. * for more details.
*
* $Id$
*/ */
/** /**