diff options
Diffstat (limited to 'Source/charon/sa/states/ike_sa_init_requested.h')
-rw-r--r-- | Source/charon/sa/states/ike_sa_init_requested.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Source/charon/sa/states/ike_sa_init_requested.h b/Source/charon/sa/states/ike_sa_init_requested.h index 0c1c01b67..01bef9357 100644 --- a/Source/charon/sa/states/ike_sa_init_requested.h +++ b/Source/charon/sa/states/ike_sa_init_requested.h @@ -1,7 +1,7 @@ /** * @file ike_sa_init_requested.h * - * @brief State of a IKE_SA after requesting an IKE_SA_INIT + * @brief Interface of ike_sa_init_requestet_t. * */ @@ -33,22 +33,25 @@ typedef struct ike_sa_init_requested_t ike_sa_init_requested_t; /** * @brief This class represents an IKE_SA state when requested an IKE_SA_INIT. - * + * + * @ingroup states */ struct ike_sa_init_requested_t { /** * methods of the state_t interface */ state_t state_interface; - }; /** * Constructor of class ike_sa_init_responded_t * - * @param ike_sa assigned ike_sa + * @param ike_sa assigned ike_sa * @param diffie_hellman diffie_hellman object use to retrieve shared secret * @param sent_nonce Sent nonce value + * @return created ike_sa_init_request_t object + * + * @ingroup states */ ike_sa_init_requested_t *ike_sa_init_requested_create(protected_ike_sa_t *ike_sa, u_int16_t dh_group_priority, diffie_hellman_t *diffie_hellman, chunk_t sent_nonce); |