From 95c61cb956505cdb0a91c8c8cd134dda3aac744d Mon Sep 17 00:00:00 2001 From: Jan Hutter Date: Thu, 24 Nov 2005 09:17:51 +0000 Subject: changed enum and structs names to _t --- Source/charon/encoding/payloads/transform_attribute.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Source/charon/encoding/payloads/transform_attribute.h') diff --git a/Source/charon/encoding/payloads/transform_attribute.h b/Source/charon/encoding/payloads/transform_attribute.h index 7cc72f207..c268a7b1e 100644 --- a/Source/charon/encoding/payloads/transform_attribute.h +++ b/Source/charon/encoding/payloads/transform_attribute.h @@ -29,12 +29,12 @@ #include +typedef enum transform_attribute_type_t transform_attribute_type_t; + /** * Type of the attribute, as in IKEv2 draft 3.3.5 */ -typedef enum transform_attribute_type_e transform_attribute_type_t; - -enum transform_attribute_type_e { +enum transform_attribute_type_t { ATTRIBUTE_UNDEFINED = 16384, KEY_LENGTH = 14 }; @@ -44,15 +44,15 @@ enum transform_attribute_type_e { */ extern mapping_t transform_attribute_type_m[]; +typedef struct transform_attribute_t transform_attribute_t; + /** * Object representing an IKEv2- TRANSFORM Attribute * * The TRANSFORM ATTRIBUTE format is described in RFC section 3.3.5. * */ -typedef struct transform_attribute_s transform_attribute_t; - -struct transform_attribute_s { +struct transform_attribute_t { /** * implements payload_t interface */ -- cgit v1.2.3