diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-11-21 08:01:15 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-11-21 08:01:15 +0000 |
commit | 447380f42a8aadb6ce90189e60ece40d5e9173bc (patch) | |
tree | 6bde0a42427d52a1742532c9995760e5a35dfc8b | |
parent | daa1c00e9f8cb62086a5a60a28d17459ef85205d (diff) | |
download | strongswan-447380f42a8aadb6ce90189e60ece40d5e9173bc.tar.bz2 strongswan-447380f42a8aadb6ce90189e60ece40d5e9173bc.tar.xz |
- added protocol_id_t
-rw-r--r-- | Source/charon/payloads/proposal_substructure.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Source/charon/payloads/proposal_substructure.h b/Source/charon/payloads/proposal_substructure.h index 35d9c9f55..c8bd2c4c5 100644 --- a/Source/charon/payloads/proposal_substructure.h +++ b/Source/charon/payloads/proposal_substructure.h @@ -36,6 +36,19 @@ */ #define PROPOSAL_SUBSTRUCTURE_HEADER_LENGTH 8 + +/** + * Protocol ID of a proposal + */ +typedef enum protocol_id_e protocol_id_t; + +enum protocol_id_e { + UNDEFINED_PROTOCOL_ID = 201, + IKE = 1, + AH = 2, + ESP = 3, +}; + /** * Object representing an IKEv2- PROPOSAL SUBSTRUCTURE * |