diff options
author | Martin Willi <martin@strongswan.org> | 2007-03-28 13:34:02 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2007-03-28 13:34:02 +0000 |
commit | 4deb89485c1f2ad64eb1e9f834d792191138a266 (patch) | |
tree | 47ca968ab2a9259ec0d61ac4702e43265157028b /src/charon/daemon.c | |
parent | 077a6fff9584dc6b321ac267b4f8b1afc5d9a5bf (diff) | |
download | strongswan-4deb89485c1f2ad64eb1e9f834d792191138a266.tar.bz2 strongswan-4deb89485c1f2ad64eb1e9f834d792191138a266.tar.xz |
removed send_queue, handled internally in sender_t know
do header parsing in receiver, ready for cookie integration
Diffstat (limited to 'src/charon/daemon.c')
-rw-r--r-- | src/charon/daemon.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/charon/daemon.c b/src/charon/daemon.c index 05acd36bf..b3adf3e89 100644 --- a/src/charon/daemon.c +++ b/src/charon/daemon.c @@ -184,7 +184,6 @@ static void destroy(private_daemon_t *this) /* we hope the sender could send the outstanding deletes, but * we shut down here at any cost */ DESTROY_IF(this->public.sender); - DESTROY_IF(this->public.send_queue); DESTROY_IF(this->public.socket); /* before destroying bus with its listeners, rehook library logs */ dbg = dbg_stderr; @@ -264,7 +263,6 @@ static void initialize(private_daemon_t *this, bool strict, bool syslog, this->public.ike_sa_manager = ike_sa_manager_create(); this->public.job_queue = job_queue_create(); this->public.event_queue = event_queue_create(); - this->public.send_queue = send_queue_create(); this->public.connections = (connection_store_t*)local_connection_store_create(); this->public.policies = (policy_store_t*)local_policy_store_create(); this->public.credentials = (credential_store_t*)local_credential_store_create(strict); @@ -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.send_queue = NULL; this->public.configuration = NULL; this->public.credentials = NULL; this->public.connections = NULL; |