updated Doxyfile
properly close all doxygen groups fixed remaining doxygen warnings
This commit is contained in:
@@ -59,5 +59,4 @@ struct backtrace_t {
|
||||
*/
|
||||
backtrace_t *backtrace_create(int skip);
|
||||
|
||||
#endif /* BACKTRACE_H_ @}*/
|
||||
|
||||
#endif /** BACKTRACE_H_ @}*/
|
||||
|
||||
@@ -122,7 +122,7 @@ enumerator_t* enumerator_create_token(char *string, char *sep, char *trim);
|
||||
* @return the nested enumerator
|
||||
*/
|
||||
enumerator_t *enumerator_create_nested(enumerator_t *outer,
|
||||
enumerator_t *(inner_constructor)(void *outer, void *data),
|
||||
enumerator_t *(*inner_constructor)(void *outer, void *data),
|
||||
void *data, void (*destroy_data)(void *data));
|
||||
|
||||
/**
|
||||
@@ -157,4 +157,4 @@ enumerator_t *enumerator_create_filter(enumerator_t *unfiltered,
|
||||
enumerator_t *enumerator_create_cleaner(enumerator_t *wrapped,
|
||||
void (*cleanup)(void *data), void *data);
|
||||
|
||||
#endif /* ENUMERATOR_H_ @} */
|
||||
#endif /** ENUMERATOR_H_ @}*/
|
||||
|
||||
@@ -113,4 +113,4 @@ struct hashtable_t {
|
||||
hashtable_t *hashtable_create(hashtable_hash_t hash, hashtable_equals_t equals,
|
||||
u_int capacity);
|
||||
|
||||
#endif /* HASHTABLE_H_ @} */
|
||||
#endif /** HASHTABLE_H_ @}*/
|
||||
|
||||
@@ -207,4 +207,4 @@ host_t *host_create_any(int family);
|
||||
int host_printf_hook(char *dst, size_t len, printf_hook_spec_t *spec,
|
||||
const void *const *args);
|
||||
|
||||
#endif /* HOST_H_ @}*/
|
||||
#endif /** HOST_H_ @}*/
|
||||
|
||||
@@ -197,8 +197,8 @@ struct identification_t {
|
||||
* Check if an ID matches a wildcard ID.
|
||||
*
|
||||
* An identification_t may contain wildcards, such as
|
||||
* *@strongswan.org. This call checks if a given ID
|
||||
* (e.g. tester@strongswan.org) belongs to a such wildcard
|
||||
* *.strongswan.org. This call checks if a given ID
|
||||
* (e.g. tester.strongswan.org) belongs to a such wildcard
|
||||
* ID. Returns > 0 if
|
||||
* - IDs are identical
|
||||
* - other is of type ID_ANY
|
||||
@@ -243,7 +243,7 @@ struct identification_t {
|
||||
* The input string may be e.g. one of the following:
|
||||
* - ID_IPV4_ADDR: 192.168.0.1
|
||||
* - ID_IPV6_ADDR: 2001:0db8:85a3:08d3:1319:8a2e:0370:7345
|
||||
* - ID_FQDN: @www.strongswan.org (@indicates FQDN)
|
||||
* - ID_FQDN: www.strongswan.org (optionally with a prepended @)
|
||||
* - ID_RFC822_ADDR: [email protected]
|
||||
* - ID_DER_ASN1_DN: C=CH, O=Linux strongSwan, CN=bob
|
||||
*
|
||||
@@ -283,4 +283,4 @@ identification_t * identification_create_from_encoding(id_type_t type, chunk_t e
|
||||
int identification_printf_hook(char *dst, size_t len, printf_hook_spec_t *spec,
|
||||
const void *const *args);
|
||||
|
||||
#endif /* IDENTIFICATION_H_ @} */
|
||||
#endif /** IDENTIFICATION_H_ @}*/
|
||||
|
||||
@@ -113,4 +113,4 @@ struct iterator_t {
|
||||
void (*destroy) (iterator_t *this);
|
||||
};
|
||||
|
||||
#endif /*ITERATOR_H_ @} */
|
||||
#endif /** ITERATOR_H_ @}*/
|
||||
|
||||
@@ -44,5 +44,5 @@ struct leak_detective_t {
|
||||
*/
|
||||
leak_detective_t *leak_detective_create();
|
||||
|
||||
#endif /* LEAK_DETECTIVE_H_ @}*/
|
||||
#endif /** LEAK_DETECTIVE_H_ @}*/
|
||||
|
||||
|
||||
@@ -47,7 +47,7 @@ bool extract_token(chunk_t *token, const char termination, chunk_t *src);
|
||||
bool extract_token_str(chunk_t *token, const char *termination, chunk_t *src);
|
||||
|
||||
/**
|
||||
* Fetches a new text line terminated by \n or \r\n
|
||||
* Fetches a new text line terminated by \\n or \\r\\n
|
||||
*/
|
||||
bool fetchline(chunk_t *src, chunk_t *line);
|
||||
|
||||
@@ -66,4 +66,4 @@ err_t extract_name_value(chunk_t *name, chunk_t *value, chunk_t *line);
|
||||
*/
|
||||
err_t extract_parameter_value(chunk_t *name, chunk_t *value, chunk_t *line);
|
||||
|
||||
#endif /* LEXPARSER_H_ @} */
|
||||
#endif /** LEXPARSER_H_ @}*/
|
||||
|
||||
@@ -272,4 +272,4 @@ struct linked_list_t {
|
||||
*/
|
||||
linked_list_t *linked_list_create(void);
|
||||
|
||||
#endif /*LINKED_LIST_H_ @} */
|
||||
#endif /** LINKED_LIST_H_ @}*/
|
||||
|
||||
@@ -185,4 +185,4 @@ condvar_t *condvar_create(condvar_type_t type);
|
||||
*/
|
||||
rwlock_t *rwlock_create(rwlock_type_t type);
|
||||
|
||||
#endif /* MUTEX_H_ @}*/
|
||||
#endif /** MUTEX_H_ @}*/
|
||||
|
||||
@@ -56,4 +56,4 @@ struct options_t {
|
||||
*/
|
||||
options_t *options_create(void);
|
||||
|
||||
#endif /*OPTIONSFROM_H_ @} */
|
||||
#endif /** OPTIONSFROM_H_ @}*/
|
||||
|
||||
Reference in New Issue
Block a user