Introduced payload types sa_payload and proposal_substructure

This commit is contained in:
Jan Hutter
2005-11-14 10:14:22 +00:00
parent 1b89ef112e
commit da42afc5ec
9 changed files with 608 additions and 6 deletions
+18 -2
View File
@@ -111,12 +111,28 @@ enum payload_type_e{
EXTENSIBLE_AUTHENTICATION = 48,
/**
* Header has value 140 of PRIVATE USE space
* Header has a value of PRIVATE USE space
*
* This payload type is not send over wire and just
* used internally to handle IKEv2-Header like a payload.
*/
HEADER = 140
HEADER = 140,
/**
* PROPOSAL_SUBSTRUCTURE has a value of PRIVATE USE space
*
* This payload type is not send over wire and just
* used internally to handle a proposal substructure like a payload.
*/
PROPOSAL_SUBSTRUCTURE = 141,
/**
* TRANSFORM_SUBSTRUCTURE has a value of PRIVATE USE space
*
* This payload type is not send over wire and just
* used internally to handle a transform substructure like a payload.
*/
TRANSFORM_SUBSTRUCTURE = 142,
};