aboutsummaryrefslogtreecommitdiffstats
path: root/src/charon/daemon.c
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2007-04-11 07:20:39 +0000
committerMartin Willi <martin@strongswan.org>2007-04-11 07:20:39 +0000
commit3b138b84222abd682d249cccbe2a69b4b12ff4c7 (patch)
tree20ad2b820f90929a1989095e7f943008ac347e0c /src/charon/daemon.c
parent2ed8cee162a32c8e781472e7190e109866972cae (diff)
downloadstrongswan-3b138b84222abd682d249cccbe2a69b4b12ff4c7.tar.bz2
strongswan-3b138b84222abd682d249cccbe2a69b4b12ff4c7.tar.xz
cleaned up apidoc
added some comments removed configuration.[ch], as it does not make sense like it is
Diffstat (limited to 'src/charon/daemon.c')
-rw-r--r--src/charon/daemon.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/charon/daemon.c b/src/charon/daemon.c
index ef07d6531..9640f1cf2 100644
--- a/src/charon/daemon.c
+++ b/src/charon/daemon.c
@@ -176,7 +176,6 @@ static void destroy(private_daemon_t *this)
/* destroy other infrastructure */
DESTROY_IF(this->public.job_queue);
DESTROY_IF(this->public.event_queue);
- DESTROY_IF(this->public.configuration);
DESTROY_IF(this->public.credentials);
DESTROY_IF(this->public.cfg_store);
DESTROY_IF(this->public.local_backend);
@@ -258,7 +257,6 @@ static void initialize(private_daemon_t *this, bool strict, bool syslog,
DBG1(DBG_DMN, "starting charon (strongSwan Version %s)", VERSION);
- this->public.configuration = configuration_create();
this->public.socket = socket_create(IKEV2_UDP_PORT, IKEV2_NATT_PORT);
this->public.ike_sa_manager = ike_sa_manager_create();
this->public.job_queue = job_queue_create();
@@ -334,7 +332,6 @@ private_daemon_t *daemon_create(void)
this->public.ike_sa_manager = NULL;
this->public.job_queue = NULL;
this->public.event_queue = NULL;
- this->public.configuration = NULL;
this->public.credentials = NULL;
this->public.cfg_store = NULL;
this->public.local_backend = NULL;