Doxygen fixes

This commit is contained in:
Tobias Brunner 2013-10-15 11:16:09 +02:00
parent a37ab690cc
commit dd438ee22c
7 changed files with 8 additions and 11 deletions

View File

@ -373,7 +373,7 @@ struct peer_cfg_t {
* @param over_time maximum overtime before closing a rekeying/reauth SA
* @param mobike use MOBIKE (RFC4555) if peer supports it
* @param aggressive use/accept aggressive mode with IKEv1
* @param pullmode TRUE to use modeconfig pull, FALSE for push
* @param pull_mode TRUE to use modeconfig pull, FALSE for push
* @param dpd DPD check interval, 0 to disable
* @param dpd_timeout DPD timeout interval (IKEv1 only), if 0 default applies
* @param mediation TRUE if this is a mediation connection

View File

@ -59,8 +59,7 @@ enum dnscert_type_t {
};
/**
* DNSCERT algorithms as defined in http://www.iana.org/assignments/
* dns-sec-alg-numbers/dns-sec-alg-numbers.xhtml#dns-sec-alg-numbers-1
* DNSCERT algorithms as defined in http://www.iana.org/assignments/dns-sec-alg-numbers/dns-sec-alg-numbers.xhtml#dns-sec-alg-numbers-1
*/
enum dnscert_algorithm_t {
/** No defined */

View File

@ -18,6 +18,9 @@
* @defgroup libpts_plugins plugins
* @ingroup libpts
*
* @defgroup swid swid
* @ingroup libpts
*
* @addtogroup libpts
* @{
*/

View File

@ -34,7 +34,7 @@
* Process a TCG PTS attribute
*
* @param out_msg outbound PA-TNC message to be built
* @param _state state of a given connection
* @param state state of a given connection
* @param supported_algorithms supported PTS measurement algorithms
* @param supported_dh_groups supported DH groups
* @param pts_db PTS configuration database

View File

@ -121,10 +121,6 @@ bool pt_tls_write(tls_socket_t *tls, pt_tls_message_type_t type,
u_int32_t identifier, chunk_t data);
/**
* @}
* @addtogroup libpttls
* @{
*
* Dummy libpttls initialization function needed for integrity test
*/
void libpttls_init(void);

View File

@ -170,7 +170,7 @@ struct mark_t {
#define MARK_REQID (0xFFFFFFFF)
/**
* Try to parse a mark_t from the given string of the form <mark>[/<mask>].
* Try to parse a mark_t from the given string of the form mark[/mask].
*
* @param value string to parse
* @param mark mark to fill

View File

@ -139,8 +139,7 @@ struct pb_tnc_msg_t {
* Useful for the parser which wants a generic constructor for all
* pb_tnc_message_t types.
*
* @param vendor_id PB-TNC vendor ID
* @param type PB-TNC message type
* @param msg_type PB-TNC message type
* @param value PB-TNC message value
*/
pb_tnc_msg_t* pb_tnc_msg_create_from_data(pen_type_t msg_type, chunk_t value);