diff options
author | Martin Willi <martin@strongswan.org> | 2006-02-14 14:52:00 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-02-14 14:52:00 +0000 |
commit | ce461bbd13c5ea6a94ba0b34cbb4d1be8159b67e (patch) | |
tree | d3ba1aa2e97e7aeb7b24163d4b8671abbeb9a7c9 /Source/charon/encoding/payloads/proposal_substructure.h | |
parent | 409d010131f14e551e0645e9b88ad7621d08b781 (diff) | |
download | strongswan-ce461bbd13c5ea6a94ba0b34cbb4d1be8159b67e.tar.bz2 strongswan-ce461bbd13c5ea6a94ba0b34cbb4d1be8159b67e.tar.xz |
- refactored ike proposal
- uses now proposal_t, wich is also used by child proposals
- ike key derivation refactored
- crypter_t api has get_key_size now
- some other improvements here and there
Diffstat (limited to 'Source/charon/encoding/payloads/proposal_substructure.h')
-rw-r--r-- | Source/charon/encoding/payloads/proposal_substructure.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/charon/encoding/payloads/proposal_substructure.h b/Source/charon/encoding/payloads/proposal_substructure.h index 0247584bb..2270a525b 100644 --- a/Source/charon/encoding/payloads/proposal_substructure.h +++ b/Source/charon/encoding/payloads/proposal_substructure.h @@ -26,7 +26,7 @@ #include <types.h> #include <encoding/payloads/payload.h> #include <encoding/payloads/transform_substructure.h> -#include <config/child_proposal.h> +#include <config/proposal.h> #include <utils/linked_list.h> @@ -173,7 +173,7 @@ struct proposal_substructure_t { */ void (*set_spi) (proposal_substructure_t *this, chunk_t spi); - void (*add_to_child_proposal) (proposal_substructure_t *this, child_proposal_t *proposal); + void (*add_to_proposal) (proposal_substructure_t *this, proposal_t *proposal); /** * @brief Clones an proposal_substructure_t object. @@ -201,7 +201,7 @@ struct proposal_substructure_t { proposal_substructure_t *proposal_substructure_create(); /** - * @brief Creates a proposal substructure from a child_proposal. + * @brief Creates a proposal substructure from a proposal. * * Since a child proposal may contain data for both AH and ESP, * the protocol must be specified. If the proposal does not contain @@ -215,7 +215,7 @@ proposal_substructure_t *proposal_substructure_create(); * * @ingroup payloads */ -proposal_substructure_t *proposal_substructure_create_from_child_proposal(child_proposal_t *proposal, protocol_id_t proto); +proposal_substructure_t *proposal_substructure_create_from_proposal(proposal_t *proposal, protocol_id_t proto); #endif /*PROPOSAL_SUBSTRUCTURE_H_*/ |