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/message.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Source/charon/encoding/message.c') diff --git a/Source/charon/encoding/message.c b/Source/charon/encoding/message.c index 5a6501d54..db6efb369 100644 --- a/Source/charon/encoding/message.c +++ b/Source/charon/encoding/message.c @@ -36,13 +36,13 @@ #include +typedef struct supported_payload_entry_t supported_payload_entry_t; + /** * Supported payload entry used in message_rule_t * */ -typedef struct supported_payload_entry_s supported_payload_entry_t; - -struct supported_payload_entry_s { +struct supported_payload_entry_t { /** * Payload type */ @@ -59,13 +59,13 @@ struct supported_payload_entry_s { size_t max_occurence; }; +typedef struct message_rule_t message_rule_t; + /** * Message Rule used to find out which payloads are supported by each message type * */ -typedef struct message_rule_s message_rule_t; - -struct message_rule_s { +struct message_rule_t { /** * Type of message */ -- cgit v1.2.3