- new configuration support added to ike_sa and states

This commit is contained in:
Jan Hutter
2005-12-01 17:16:10 +00:00
parent bae00c63f7
commit a9428251cd
16 changed files with 772 additions and 597 deletions
+22 -2
View File
@@ -87,7 +87,7 @@ struct init_config_t {
/**
* Get my host information as host_t object.
*
* @warning Object is getting cloned and has to get destroyed by caller.
* @warning Object is NOT getting cloned.
*
* @param this calling object
* @return host information as host_t object
@@ -97,13 +97,33 @@ struct init_config_t {
/**
* Get other host information as host_t object.
*
* @warning Object is getting cloned and has to get destroyed by caller.
* @warning Object is NOT getting cloned.
*
* @param this calling object
* @return host information as host_t object
*/
host_t * (*get_other_host) (init_config_t *this);
/**
* Get my host information as host_t object.
*
* @warning Object is not getting cloned and has to get destroyed by caller.
*
* @param this calling object
* @return host information as host_t object
*/
host_t * (*get_my_host_clone) (init_config_t *this);
/**
* Get other host information as host_t object.
*
* @warning Object is not getting cloned and has to get destroyed by caller.
*
* @param this calling object
* @return host information as host_t object
*/
host_t * (*get_other_host_clone) (init_config_t *this);
/**
* Get the diffie hellman group to use as initiator with given priority.
*