aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcharon/daemon.c
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2010-11-06 00:54:10 +0100
committerAndreas Steffen <andreas.steffen@strongswan.org>2010-11-09 20:43:50 +0100
commitb25633314e1ba521d5b5367e38648b6e510859f4 (patch)
treee5daef415bd042c84dc3e3c6da9d00445f5eaf37 /src/libcharon/daemon.c
parentc78be5691cf1a659c5f848b7ad7dc1afd0b21900 (diff)
downloadstrongswan-b25633314e1ba521d5b5367e38648b6e510859f4.tar.bz2
strongswan-b25633314e1ba521d5b5367e38648b6e510859f4.tar.xz
implement IMC and IMV manager classes
Diffstat (limited to 'src/libcharon/daemon.c')
-rw-r--r--src/libcharon/daemon.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libcharon/daemon.c b/src/libcharon/daemon.c
index 2f36938a2..4b8e1fadd 100644
--- a/src/libcharon/daemon.c
+++ b/src/libcharon/daemon.c
@@ -128,10 +128,6 @@ static void destroy(private_daemon_t *this)
DESTROY_IF(this->public.backends);
DESTROY_IF(this->public.socket);
- /* destroy lists of TNC IMCs and IMVs */
- DESTROY_IF(this->public.imcs);
- DESTROY_IF(this->public.imvs);
-
/* rehook library logging, shutdown logging */
dbg = dbg_old;
DESTROY_IF(this->public.bus);
@@ -424,8 +420,6 @@ private_daemon_t *daemon_create()
.start = _start,
.file_loggers = linked_list_create(),
.sys_loggers = linked_list_create(),
- .imcs = linked_list_create(),
- .imvs = linked_list_create(),
},
);