diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-04-12 16:43:21 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-04-12 16:43:21 +0000 |
commit | 0dbe579a5141f83c6a49e5f422d80c3e34123dfe (patch) | |
tree | ce060beb050129351294f7e9c447d0e6536ce4db | |
parent | 4cda602393a6400b205ad494e6be0557b4fab581 (diff) | |
download | strongswan-0dbe579a5141f83c6a49e5f422d80c3e34123dfe.tar.bz2 strongswan-0dbe579a5141f83c6a49e5f422d80c3e34123dfe.tar.xz |
added AA and AATR cert paths
-rw-r--r-- | src/charon/daemon.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/charon/daemon.h b/src/charon/daemon.h index ebc38738e..01a3126f9 100644 --- a/src/charon/daemon.h +++ b/src/charon/daemon.h @@ -284,13 +284,27 @@ typedef struct daemon_t daemon_t; #define CERTIFICATE_DIR IPSEC_D_DIR "/certs" /** - * Default directory for trusted CA certificates + * Default directory for trusted Certification Authority certificates * * @ingroup charon */ #define CA_CERTIFICATE_DIR IPSEC_D_DIR "/cacerts" /** + * Default directory for Authorization Authority certificates + * + * @ingroup charon + */ +#define AA_CERTIFICATE_DIR IPSEC_D_DIR "/aacerts" + +/** + * Default directory for Attribute certificates + * + * @ingroup charon + */ +#define ATTR_CERTIFICATE_DIR IPSEC_D_DIR "/acerts" + +/** * Default directory for OCSP signing certificates * * @ingroup charon |