From bce22af29e340b92d98d3937e6ef6d694ee125c9 Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Tue, 20 Dec 2011 18:01:12 +0100 Subject: [PATCH] Implemented migration of quick mode task --- src/libcharon/sa/ikev1/tasks/quick_mode.c | 28 +++++++++++++++++++---- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/src/libcharon/sa/ikev1/tasks/quick_mode.c b/src/libcharon/sa/ikev1/tasks/quick_mode.c index df7b6375f..13db2bb91 100644 --- a/src/libcharon/sa/ikev1/tasks/quick_mode.c +++ b/src/libcharon/sa/ikev1/tasks/quick_mode.c @@ -114,11 +114,6 @@ struct private_quick_mode_t { */ u_int64_t lifebytes; - /** - * Notify type in case of error - */ - notify_type_t notify_type; - /** states of quick mode */ enum { QM_INIT, @@ -895,7 +890,30 @@ METHOD(task_t, get_type, task_type_t, METHOD(task_t, migrate, void, private_quick_mode_t *this, ike_sa_t *ike_sa) { + chunk_free(&this->nonce_i); + chunk_free(&this->nonce_r); + DESTROY_IF(this->tsi); + DESTROY_IF(this->tsr); + DESTROY_IF(this->proposal); + DESTROY_IF(this->child_sa); + DESTROY_IF(this->dh); + this->ike_sa = ike_sa; + this->keymat = (keymat_v1_t*)ike_sa->get_keymat(ike_sa); + this->state = QM_INIT; + this->tsi = NULL; + this->tsr = NULL; + this->proposal = NULL; + this->child_sa = NULL; + this->dh = NULL; + this->spi_i = 0; + this->spi_r = 0; + + if (!this->initiator) + { + DESTROY_IF(this->config); + this->config = NULL; + } } METHOD(task_t, destroy, void,