Fix some Doxygen issues
This commit is contained in:
@@ -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.
|
* Parse notification data of a REDIRECT or REDIRECTED_FROM notify payload.
|
||||||
*
|
*
|
||||||
* @param data notification data to parse
|
* @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
|
* @return gateway identity, NULL if data is invalid
|
||||||
*/
|
*/
|
||||||
identification_t *redirect_data_parse(chunk_t data, chunk_t *nonce);
|
identification_t *redirect_data_parse(chunk_t data, chunk_t *nonce);
|
||||||
|
|||||||
@@ -36,8 +36,8 @@ struct certificate_printer_t {
|
|||||||
/**
|
/**
|
||||||
* Print a certificate.
|
* Print a certificate.
|
||||||
*
|
*
|
||||||
* @cert certificate to be printed
|
* @param cert certificate to be printed
|
||||||
* @has_privkey indicates that certificate has a matching private key
|
* @param has_privkey indicates that certificate has a matching private key
|
||||||
*/
|
*/
|
||||||
void (*print)(certificate_printer_t *this, certificate_t *cert,
|
void (*print)(certificate_printer_t *this, certificate_t *cert,
|
||||||
bool has_privkey);
|
bool has_privkey);
|
||||||
@@ -45,8 +45,8 @@ struct certificate_printer_t {
|
|||||||
/**
|
/**
|
||||||
* Print a caption if the certificate type changed.
|
* Print a caption if the certificate type changed.
|
||||||
*
|
*
|
||||||
* @type certificate type
|
* @param type certificate type
|
||||||
* @flag X.509 certificate flag
|
* @param flag X.509 certificate flag
|
||||||
*/
|
*/
|
||||||
void (*print_caption)(certificate_printer_t *this, certificate_type_t type,
|
void (*print_caption)(certificate_printer_t *this, certificate_type_t type,
|
||||||
x509_flag_t flag);
|
x509_flag_t flag);
|
||||||
@@ -65,6 +65,6 @@ struct certificate_printer_t {
|
|||||||
* @param utc print time inforamtion in UTC
|
* @param utc print time inforamtion in UTC
|
||||||
*/
|
*/
|
||||||
certificate_printer_t* certificate_printer_create(FILE *f, bool detailed,
|
certificate_printer_t* certificate_printer_create(FILE *f, bool detailed,
|
||||||
bool utc);
|
bool utc);
|
||||||
|
|
||||||
#endif /** CERTIFICATE_PRINTER_H_ @}*/
|
#endif /** CERTIFICATE_PRINTER_H_ @}*/
|
||||||
|
|||||||
@@ -164,7 +164,7 @@ static inline u_int64_t untoh64(void *network)
|
|||||||
/**
|
/**
|
||||||
* Read a 32-bit value in little-endian order from unaligned address.
|
* 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
|
* @return host order value
|
||||||
*/
|
*/
|
||||||
static inline u_int32_t uletoh32(void *p)
|
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.
|
* Write a 32-bit value in little-endian to an unaligned address.
|
||||||
*
|
*
|
||||||
* @param host host order 32-bit value
|
* @param p host order 32-bit value
|
||||||
* @param network unaligned address to write little endian value to
|
* @param v unaligned address to write little endian value to
|
||||||
*/
|
*/
|
||||||
static inline void htoule32(void *p, u_int32_t v)
|
static inline void htoule32(void *p, u_int32_t v)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user