- removed generator context object and implemented payload-interface in generator

This commit is contained in:
Jan Hutter
2005-11-14 08:12:59 +00:00
parent cc0fbc3c24
commit 1e8bb886d1
7 changed files with 326 additions and 468 deletions
+9
View File
@@ -96,6 +96,15 @@ struct ike_header_s {
* Length of the whole IKEv2-Message (header and all payloads)
*/
u_int32_t length;
/**
* @brief Destroys a ike_haeder payload and all included substructures.
*
* @param this payload to destroy
* @return
* SUCCESS in any case
*/
status_t (*destroy) (ike_header_t *this);
};
/**