diff options
author | Martin Willi <martin@strongswan.org> | 2006-03-16 15:25:06 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-03-16 15:25:06 +0000 |
commit | 16b9a73cc4bd4c4fafc8618fdd4c05ab72195df1 (patch) | |
tree | b7d3214d59942dbd75ad8b9b8f86468f82f7a496 /Source/charon/sa/authenticator.h | |
parent | b1953ccd05b5e6cf5a87c557208d5f8a1fcad231 (diff) | |
download | strongswan-16b9a73cc4bd4c4fafc8618fdd4c05ab72195df1.tar.bz2 strongswan-16b9a73cc4bd4c4fafc8618fdd4c05ab72195df1.tar.xz |
- reworked configuration framework completly
- configuration is now split up in: connections, policies, credentials and daemon config
- further alloc/free fixes needed!
Diffstat (limited to 'Source/charon/sa/authenticator.h')
-rw-r--r-- | Source/charon/sa/authenticator.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/charon/sa/authenticator.h b/Source/charon/sa/authenticator.h index c50ac4f32..b6bc317ac 100644 --- a/Source/charon/sa/authenticator.h +++ b/Source/charon/sa/authenticator.h @@ -20,8 +20,8 @@ * for more details. */ -#ifndef _AUTHENTICATOR_H_ -#define _AUTHENTICATOR_H_ +#ifndef AUTHENTICATOR_H_ +#define AUTHENTICATOR_H_ #include <types.h> #include <sa/ike_sa.h> @@ -122,7 +122,7 @@ struct authenticator_t { * * @warning: The following functions of the assigned protected_ike_sa_t object * must return a valid value: - * - protected_ike_sa_t.get_sa_config + * - protected_ike_sa_t.get_policy * - protected_ike_sa_t.get_prf * - protected_ike_sa_t.get_logger * This preconditions are not given in IKE_SA states INITIATOR_INIT or RESPONDER_INIT! @@ -135,4 +135,4 @@ struct authenticator_t { */ authenticator_t *authenticator_create(protected_ike_sa_t *ike_sa); -#endif //_AUTHENTICATOR_H_ +#endif /* AUTHENTICATOR_H_ */ |