diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-11-29 09:57:22 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-11-29 09:57:22 +0000 |
commit | db6e764580f29c658a3f5486b74e13ad4de7abd4 (patch) | |
tree | 050666c2ee034daa6fb808190bf2dd24f99a62f1 /Source/charon/encoding/payloads/encodings.h | |
parent | a0753941e115fa450b3f750427a3755535cfe2fb (diff) | |
download | strongswan-db6e764580f29c658a3f5486b74e13ad4de7abd4.tar.bz2 strongswan-db6e764580f29c658a3f5486b74e13ad4de7abd4.tar.xz |
- added and tested id_payload_t
Diffstat (limited to 'Source/charon/encoding/payloads/encodings.h')
-rw-r--r-- | Source/charon/encoding/payloads/encodings.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Source/charon/encoding/payloads/encodings.h b/Source/charon/encoding/payloads/encodings.h index 309527b38..d39453a49 100644 --- a/Source/charon/encoding/payloads/encodings.h +++ b/Source/charon/encoding/payloads/encodings.h @@ -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, }; |