diff options
author | Martin Willi <martin@strongswan.org> | 2006-04-25 10:06:30 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-04-25 10:06:30 +0000 |
commit | 13e4a62f5c352981a93156be7749bfa712782d84 (patch) | |
tree | 16790bf1294e870da3b40f3991e258b7176f778e /Source/charon/threads/stroke_interface.h | |
parent | a8c09d8cc0044fbff6c89c2e8966427ee7ed1ef0 (diff) | |
download | strongswan-13e4a62f5c352981a93156be7749bfa712782d84.tar.bz2 strongswan-13e4a62f5c352981a93156be7749bfa712782d84.tar.xz |
- added separate implementation for connection_store, credential_store, policy_store
- added folder structure to config
- credentials are fetched solely on IDs now
Diffstat (limited to 'Source/charon/threads/stroke_interface.h')
-rw-r--r-- | Source/charon/threads/stroke_interface.h | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/Source/charon/threads/stroke_interface.h b/Source/charon/threads/stroke_interface.h index 0bb0bb48b..f8efc9c67 100644 --- a/Source/charon/threads/stroke_interface.h +++ b/Source/charon/threads/stroke_interface.h @@ -23,14 +23,9 @@ #ifndef STROKE_INTERFACE_H_ #define STROKE_INTERFACE_H_ -#include <config/policy_store.h> -#include <config/connection_store.h> -#include <config/credential_store.h> - - -#define IPSEC_DIR "/etc/ipsec.d/" -#define PRIVATE_KEY_DIR IPSEC_DIR "private/" -#define CERTIFICATE_DIR IPSEC_DIR "certs/" +#include <config/policies/policy_store.h> +#include <config/connections/connection_store.h> +#include <config/credentials/credential_store.h> typedef struct stroke_t stroke_t; @@ -59,11 +54,6 @@ typedef struct stroke_t stroke_t; * @ingroup threads */ struct stroke_t { - - /** - * Implements connection_store_t interface - */ - connection_store_t connections; /** * Implements policy_store_t interface |