diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-12-06 14:50:56 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-12-06 14:50:56 +0000 |
commit | d794bcdb08bb6d03f554902579a129071e73be46 (patch) | |
tree | 028ab0f2d35ae16eadded47c31173aad1d3f89e1 /Source/charon/utils/identification.h | |
parent | c3dc864eaa5cebae57be1b0e9339f2e7ebdbfe15 (diff) | |
download | strongswan-d794bcdb08bb6d03f554902579a129071e73be46.tar.bz2 strongswan-d794bcdb08bb6d03f554902579a129071e73be46.tar.xz |
- code cleaned up
Diffstat (limited to 'Source/charon/utils/identification.h')
-rw-r--r-- | Source/charon/utils/identification.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Source/charon/utils/identification.h b/Source/charon/utils/identification.h index 02a5a2e60..057989b24 100644 --- a/Source/charon/utils/identification.h +++ b/Source/charon/utils/identification.h @@ -30,9 +30,11 @@ typedef enum id_type_t id_type_t; /** - * @brief ID Types of a ID payload. + * @brief ID Types in a ID payload. * - * @see identification_t + * @see + * - identification_t + * - id_payload_t * * @ingroup utils */ @@ -83,7 +85,7 @@ enum id_type_t { }; /** - * string amppings for id_type_t + * String mappings for id_type_t. */ extern mapping_t id_type_m[]; @@ -106,7 +108,7 @@ typedef struct identification_t identification_t; * - identification_create_from_string() * - identification_create_from_encoding() * - * @todo Implement other types. + * @todo Support for other ID types then ID_IPV4_ADDR. * * @ingroup utils */ @@ -150,7 +152,6 @@ struct identification_t { */ bool (*equals) (identification_t *this,identification_t *other); - /** * @brief Destroys a identification_t object. * @@ -178,7 +179,7 @@ identification_t * identification_create_from_string(id_type_t type, char *strin * * @param type type of this id, such as ID_IPV4_ADDR * @param encoded encoded bytes, such as from identification_t.get_encoding - * @return created identification_t object + * @return identification_t object * * @ingroup utils */ |