diff options
author | Martin Willi <martin@strongswan.org> | 2006-05-31 14:23:15 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-05-31 14:23:15 +0000 |
commit | 32b6500fbfe063f3efb5589facd027f4c6cf08ed (patch) | |
tree | c434114b344ff3a134ebf245a6865ff2794da590 /src/charon/queues/job_queue.c | |
parent | 6f2aba1322ce0061c56b9faeb979c236da926c3f (diff) | |
download | strongswan-32b6500fbfe063f3efb5589facd027f4c6cf08ed.tar.bz2 strongswan-32b6500fbfe063f3efb5589facd027f4c6cf08ed.tar.xz |
job management:
moved job code from thread_pool to job, jobs have an "execute" method now
added two new jobs: delete_child_sa & rekey_child_sa
kernel interface:
listens now for ACQUIRE & EXPIRE
supports hard and soft lifetimes
fires jobs for delete and rekey child sa
ike sa manager:
can checkout IKE SAs by requid of owned CHILD SAs
we have now the infrastructure to do the rekeying... :-)
Diffstat (limited to 'src/charon/queues/job_queue.c')
-rw-r--r-- | src/charon/queues/job_queue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charon/queues/job_queue.c b/src/charon/queues/job_queue.c index 12a781c67..91b992bf0 100644 --- a/src/charon/queues/job_queue.c +++ b/src/charon/queues/job_queue.c @@ -121,7 +121,7 @@ static void job_queue_destroy (private_job_queue_t *this) this->list->destroy(this->list); break; } - job->destroy_all(job); + job->destroy(job); } this->list->destroy(this->list); |