Fix some Doxygen issues

This commit is contained in:
Tobias Brunner 2016-03-11 11:25:25 +01:00
parent bebccf9876
commit 755d076fec
3 changed files with 9 additions and 9 deletions

View File

@ -101,7 +101,7 @@ chunk_t redirect_data_create(identification_t *gw, chunk_t nonce);
* Parse notification data of a REDIRECT or REDIRECTED_FROM notify payload.
*
* @param data notification data to parse
* @param nonce[out] nonce data (allocated), if any was provided
* @param[out] nonce nonce data (allocated), if any was provided
* @return gateway identity, NULL if data is invalid
*/
identification_t *redirect_data_parse(chunk_t data, chunk_t *nonce);

View File

@ -36,8 +36,8 @@ struct certificate_printer_t {
/**
* Print a certificate.
*
* @cert certificate to be printed
* @has_privkey indicates that certificate has a matching private key
* @param cert certificate to be printed
* @param has_privkey indicates that certificate has a matching private key
*/
void (*print)(certificate_printer_t *this, certificate_t *cert,
bool has_privkey);
@ -45,8 +45,8 @@ struct certificate_printer_t {
/**
* Print a caption if the certificate type changed.
*
* @type certificate type
* @flag X.509 certificate flag
* @param type certificate type
* @param flag X.509 certificate flag
*/
void (*print_caption)(certificate_printer_t *this, certificate_type_t type,
x509_flag_t flag);
@ -65,6 +65,6 @@ struct certificate_printer_t {
* @param utc print time inforamtion in UTC
*/
certificate_printer_t* certificate_printer_create(FILE *f, bool detailed,
bool utc);
bool utc);
#endif /** CERTIFICATE_PRINTER_H_ @}*/

View File

@ -164,7 +164,7 @@ static inline u_int64_t untoh64(void *network)
/**
* Read a 32-bit value in little-endian order from unaligned address.
*
* @param network unaligned address to read little endian value from
* @param p unaligned address to read little endian value from
* @return host order value
*/
static inline u_int32_t uletoh32(void *p)
@ -179,8 +179,8 @@ static inline u_int32_t uletoh32(void *p)
/**
* Write a 32-bit value in little-endian to an unaligned address.
*
* @param host host order 32-bit value
* @param network unaligned address to write little endian value to
* @param p host order 32-bit value
* @param v unaligned address to write little endian value to
*/
static inline void htoule32(void *p, u_int32_t v)
{