diff options
author | Martin Willi <martin@strongswan.org> | 2006-03-07 09:42:15 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-03-07 09:42:15 +0000 |
commit | 8a4911290753eb3b4d3070ed9097d7cbcd2fd349 (patch) | |
tree | ce5cbaf9364ace55fd324b5967652cc32b0c5797 /Source/charon/daemon.h | |
parent | aa5a35a0056a50c563af9fa1d7c808e1f869405c (diff) | |
download | strongswan-8a4911290753eb3b4d3070ed9097d7cbcd2fd349.tar.bz2 strongswan-8a4911290753eb3b4d3070ed9097d7cbcd2fd349.tar.xz |
- configuration_manager replaced by configuration_t interface
- current configuration_manager is now static_configuration (testing)
- first draft of starter_configuration, which should once interact with ipsec starter (via whack?)
- some cleanups
- socket_t uses RAW socket, which allows parallel service of pluto/charon
Diffstat (limited to 'Source/charon/daemon.h')
-rw-r--r-- | Source/charon/daemon.h | 26 |
1 files changed, 3 insertions, 23 deletions
diff --git a/Source/charon/daemon.h b/Source/charon/daemon.h index 343aecb25..3291743e0 100644 --- a/Source/charon/daemon.h +++ b/Source/charon/daemon.h @@ -34,7 +34,7 @@ #include <queues/job_queue.h> #include <queues/event_queue.h> #include <utils/logger_manager.h> -#include <config/configuration_manager.h> +#include <config/configuration.h> /** * Name of the daemon. @@ -55,26 +55,6 @@ #define IKEV2_UDP_PORT 500 /** - * @brief First retransmit timeout in milliseconds. - * - * Timeout value is increasing in each retransmit round. - */ -#define RETRANSMIT_TIMEOUT 3000 - -/** - * Timeout in milliseconds after that a half open IKE_SA gets deleted. - */ -#define HALF_OPEN_IKE_SA_TIMEOUT 30000 - -/** - * @brief Max retransmit count. - * - * 0 for infinite. The max time a half open IKE_SA is alive is set by - * RETRANSMIT_TIMEOUT. - */ -#define MAX_RETRANSMIT_COUNT 0 - -/** * @brief Default loglevel for every logger context. * * This is the maximum allowed level for ever context, the definiton @@ -120,9 +100,9 @@ struct daemon_t { ike_sa_manager_t *ike_sa_manager; /** - * A configuration_manager_t instance. + * A configuration_t instance. */ - configuration_manager_t *configuration_manager; + configuration_t *configuration; /** * The Sender-Thread. |