- introduced new encoding type KEY_EXCHANGE_DATA

This commit is contained in:
Jan Hutter 2005-11-15 14:08:54 +00:00
parent 8bf27ddf4e
commit 0c5c09227b
2 changed files with 10 additions and 0 deletions

View file

@ -38,6 +38,7 @@ mapping_t encoding_type_t_mappings[] = {
{HEADER_LENGTH, "HEADER_LENGTH"},
{SPI_SIZE, "SPI_SIZE"},
{SPI, "SPI"},
{KEY_EXCHANGE_DATA, "KEY_EXCHANGE_DATA"},
{PROPOSALS, "PROPOSALS"},
{TRANSFORMS, "TRANSFORMS"},
{TRANSFORM_ATTRIBUTES, "TRANSFORM_ATTRIBUTES"},

View file

@ -190,6 +190,15 @@ enum encoding_type_e{
* When parsing SPI_SIZE bytes are read and written into the chunk pointing to.
*/
SPI,
/**
* Representating a Jey Exchange 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.
*/
KEY_EXCHANGE_DATA,
/**
* Representating one or more proposal substructures
*