Added encoding_type_t NOTIFICATION_DATA

This commit is contained in:
Jan Hutter 2005-11-15 15:20:26 +00:00
parent 1071642c17
commit 2dcb14b0ae
2 changed files with 11 additions and 1 deletions

View file

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

View file

@ -191,7 +191,7 @@ enum encoding_type_e{
*/
SPI,
/**
* Representating a Jey Exchange Data field
* Representating a Key Exchange Data field
*
* When generating the content of the chunkt pointing to
* is written.
@ -199,6 +199,15 @@ enum encoding_type_e{
* When parsing (Payload Length - 8) bytes are read and written into the chunk pointing to.
*/
KEY_EXCHANGE_DATA,
/**
* Representating a Notification field
*
* When generating the content of the chunkt pointing to
* is written.
*
* When parsing (Payload Length - spi size - 8) bytes are read and written into the chunk pointing to.
*/
NOTIFICATION_DATA,
/**
* Representating one or more proposal substructures
*