diff options
author | Martin Willi <martin@strongswan.org> | 2005-12-15 12:10:53 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-12-15 12:10:53 +0000 |
commit | 19f78a6fed6e966721e9e310099dbfa79489f9d9 (patch) | |
tree | b3902ad27411f082bbb286cbb44340d99b4c8edc /Source/charon/config/sa_config.h | |
parent | b4ffed672b50523506d410b64fb2ed1aa026617f (diff) | |
download | strongswan-19f78a6fed6e966721e9e310099dbfa79489f9d9.tar.bz2 strongswan-19f78a6fed6e966721e9e310099dbfa79489f9d9.tar.xz |
- fixed doxygen warnings
Diffstat (limited to 'Source/charon/config/sa_config.h')
-rw-r--r-- | Source/charon/config/sa_config.h | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/Source/charon/config/sa_config.h b/Source/charon/config/sa_config.h index a2cc3f897..ad9e33019 100644 --- a/Source/charon/config/sa_config.h +++ b/Source/charon/config/sa_config.h @@ -99,8 +99,8 @@ struct sa_config_t { * * Returned object is not getting cloned. * - * @param this calling object - * @return own id + * @param this calling object + * @return own id */ identification_t *(*get_my_id) (sa_config_t *this); @@ -109,23 +109,23 @@ struct sa_config_t { * * Returned object is not getting cloned. * - * @param this calling object - * @return other id + * @param this calling object + * @return other id */ identification_t *(*get_other_id) (sa_config_t *this); /** * @brief Get authentication method to use for IKE_AUTH. * - * @param this calling object - * @return authentication methood + * @param this calling object + * @return authentication methood */ auth_method_t (*get_auth_method) (sa_config_t *this); /** * @brief Get lifetime of IKE_SA in milliseconds. * - * @return IKE_SA lifetime in milliseconds. + * @return IKE_SA lifetime in milliseconds. */ u_int32_t (*get_ike_sa_lifetime) (sa_config_t *this); @@ -138,9 +138,9 @@ struct sa_config_t { * @warning Resulting pointer array must be freed! * @warning Traffic selectors in array must be destroyed! * - * @param this calling object - * @param[out]traffic_selectors pointer where traffic selectors will be allocated - * @return number of returned traffic selectors + * @param this calling object + * @param[out] traffic_selectors pointer where traffic selectors will be allocated + * @return number of returned traffic selectors */ size_t (*get_traffic_selectors_initiator) (sa_config_t *this, traffic_selector_t **traffic_selectors[]); @@ -154,9 +154,9 @@ struct sa_config_t { * @warning Resulting pointer array must be freed! * @warning Traffic selectors in array must be destroyed! * - * @param this calling object - * @param[out]traffic_selectors pointer where traffic selectors will be allocated - * @return number of returned traffic selectors + * @param this calling object + * @param[out] traffic_selectors pointer where traffic selectors will be allocated + * @return number of returned traffic selectors */ size_t (*get_traffic_selectors_responder) (sa_config_t *this, traffic_selector_t **traffic_selectors[]); @@ -169,11 +169,11 @@ struct sa_config_t { * @warning Resulting pointer array must be freed! * @warning Traffic selectors in array must be destroyed! * - * @param this calling object - * @param supplied pointer to an array of ts to select from. - * @param count number of ts stored at supplied - * @param[out]traffic_selectors pointer where selected traffic selectors will be allocated - * @return number of selected traffic selectors + * @param this calling object + * @param supplied pointer to an array of ts to select from. + * @param count number of ts stored at supplied + * @param[out] traffic_selectors pointer where selected traffic selectors will be allocated + * @return number of selected traffic selectors */ size_t (*select_traffic_selectors_initiator) (sa_config_t *this, traffic_selector_t *supplied[], size_t count, traffic_selector_t **selected[]); @@ -186,11 +186,11 @@ struct sa_config_t { * @warning Resulting pointer array must be freed! * @warning Traffic selectors in array must be destroyed! * - * @param this calling object - * @param supplied pointer to an array of ts to select from. - * @param count number of ts stored at supplied - * @param[out]traffic_selectors pointer where selected traffic selectors will be allocated - * @return number of selected traffic selectors + * @param this calling object + * @param supplied pointer to an array of ts to select from. + * @param count number of ts stored at supplied + * @param[out] traffic_selectors pointer where selected traffic selectors will be allocated + * @return number of selected traffic selectors */ size_t (*select_traffic_selectors_responder) (sa_config_t *this, traffic_selector_t *supplied[], size_t count, traffic_selector_t **selected[]); @@ -199,9 +199,9 @@ struct sa_config_t { * * @warning Resulting array must be freed! * - * @param this calling object - * @param[out]traffic_selectors pointer where proposals will be allocated - * @return number of allocated proposals + * @param this calling object + * @param[out] traffic_selectors pointer where proposals will be allocated + * @return number of allocated proposals */ size_t (*get_proposals) (sa_config_t *this, u_int8_t ah_spi[4], u_int8_t esp_spi[4], child_proposal_t *proposals[]); |