Doxygen fixes

This commit is contained in:
Tobias Brunner
2013-10-15 11:25:55 +02:00
parent a37ab690cc
commit dd438ee22c
7 changed files with 8 additions and 11 deletions
+1 -1
View File
@@ -373,7 +373,7 @@ struct peer_cfg_t {
* @param over_time maximum overtime before closing a rekeying/reauth SA * @param over_time maximum overtime before closing a rekeying/reauth SA
* @param mobike use MOBIKE (RFC4555) if peer supports it * @param mobike use MOBIKE (RFC4555) if peer supports it
* @param aggressive use/accept aggressive mode with IKEv1 * @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 DPD check interval, 0 to disable
* @param dpd_timeout DPD timeout interval (IKEv1 only), if 0 default applies * @param dpd_timeout DPD timeout interval (IKEv1 only), if 0 default applies
* @param mediation TRUE if this is a mediation connection * @param mediation TRUE if this is a mediation connection
+1 -2
View File
@@ -59,8 +59,7 @@ enum dnscert_type_t {
}; };
/** /**
* DNSCERT algorithms as defined in http://www.iana.org/assignments/ * DNSCERT algorithms as defined in http://www.iana.org/assignments/dns-sec-alg-numbers/dns-sec-alg-numbers.xhtml#dns-sec-alg-numbers-1
* dns-sec-alg-numbers/dns-sec-alg-numbers.xhtml#dns-sec-alg-numbers-1
*/ */
enum dnscert_algorithm_t { enum dnscert_algorithm_t {
/** No defined */ /** No defined */
+3
View File
@@ -18,6 +18,9 @@
* @defgroup libpts_plugins plugins * @defgroup libpts_plugins plugins
* @ingroup libpts * @ingroup libpts
* *
* @defgroup swid swid
* @ingroup libpts
*
* @addtogroup libpts * @addtogroup libpts
* @{ * @{
*/ */
@@ -34,7 +34,7 @@
* Process a TCG PTS attribute * Process a TCG PTS attribute
* *
* @param out_msg outbound PA-TNC message to be built * @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_algorithms supported PTS measurement algorithms
* @param supported_dh_groups supported DH groups * @param supported_dh_groups supported DH groups
* @param pts_db PTS configuration database * @param pts_db PTS configuration database
-4
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); u_int32_t identifier, chunk_t data);
/** /**
* @}
* @addtogroup libpttls
* @{
*
* Dummy libpttls initialization function needed for integrity test * Dummy libpttls initialization function needed for integrity test
*/ */
void libpttls_init(void); void libpttls_init(void);
+1 -1
View File
@@ -170,7 +170,7 @@ struct mark_t {
#define MARK_REQID (0xFFFFFFFF) #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 value string to parse
* @param mark mark to fill * @param mark mark to fill
@@ -139,8 +139,7 @@ struct pb_tnc_msg_t {
* Useful for the parser which wants a generic constructor for all * Useful for the parser which wants a generic constructor for all
* pb_tnc_message_t types. * pb_tnc_message_t types.
* *
* @param vendor_id PB-TNC vendor ID * @param msg_type PB-TNC message type
* @param type PB-TNC message type
* @param value PB-TNC message value * @param value PB-TNC message value
*/ */
pb_tnc_msg_t* pb_tnc_msg_create_from_data(pen_type_t msg_type, chunk_t value); pb_tnc_msg_t* pb_tnc_msg_create_from_data(pen_type_t msg_type, chunk_t value);