- added and tested id_payload_t

This commit is contained in:
Jan Hutter
2005-11-29 09:57:22 +00:00
parent a0753941e1
commit db6e764580
13 changed files with 182 additions and 12 deletions
@@ -308,6 +308,16 @@ enum encoding_type_t{
* When parsing (Payload Length - 4) bytes are read and written into the chunk pointing to.
*/
NONCE_DATA,
/**
* Representating a ID Data field.
*
* When generating the content of the chunkt pointing to
* is written.
*
* When parsing (Payload Length - 8) bytes are read and written into the chunk pointing to.
*/
ID_DATA,
/**
* Representating an IKE_SPI field in an IKEv2 Header.
@@ -319,6 +329,9 @@ enum encoding_type_t{
*/
IKE_SPI,
/**
* Representing the encrypted data body of a encryption payload.
*/
ENCRYPTED_DATA,
};