diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-11-14 10:14:22 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-11-14 10:14:22 +0000 |
commit | da42afc5ec9e228832ded89cf70213006510c5f5 (patch) | |
tree | d0ddf39503a38f74fe1ec3892caa692e1095407e /Source/charon/payloads/encodings.h | |
parent | 1b89ef112e5a7cb2bd1b5890a001bdc37c102bc1 (diff) | |
download | strongswan-da42afc5ec9e228832ded89cf70213006510c5f5.tar.bz2 strongswan-da42afc5ec9e228832ded89cf70213006510c5f5.tar.xz |
Introduced payload types sa_payload and proposal_substructure
Diffstat (limited to 'Source/charon/payloads/encodings.h')
-rw-r--r-- | Source/charon/payloads/encodings.h | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/Source/charon/payloads/encodings.h b/Source/charon/payloads/encodings.h index 867955d44..e3db10839 100644 --- a/Source/charon/payloads/encodings.h +++ b/Source/charon/payloads/encodings.h @@ -182,6 +182,15 @@ enum encoding_type_e{ */ SPI_SIZE, /** + * Representating a spi field + * + * When generating the content of the chunkt pointing to + * is written. + * + * When parsing SPI_SIZE bytes are read and written into the chunk pointing to. + */ + SPI, + /** * Representating one or more proposal substructures * * The offset points to a linked_list_t pointer. @@ -192,7 +201,19 @@ enum encoding_type_e{ * When parsing the parsed proposal_substructure_t objects have * to be stored in the pointed linked_list. */ - PROPOSALS + PROPOSALS, + /** + * Representating one or more transform substructures + * + * The offset points to a linked_list_t pointer. + * + * When generating the transform_substructure_t objects are stored + * in the pointed linked_list. + * + * When parsing the parsed transform_substructure_t objects have + * to be stored in the pointed linked_list. + */ + TRANSFORMS }; /** |