diff options
author | Martin Willi <martin@strongswan.org> | 2006-06-07 13:26:23 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-06-07 13:26:23 +0000 |
commit | 8d77eddec2bddbbf44eeec1b95c44a69426c87a6 (patch) | |
tree | b6cc5552d9f19357d9b789ee18d858236089da82 /src/charon/sa/states/responder_init.c | |
parent | a401efd09157382ba95a398e71995fd67a5fd337 (diff) | |
download | strongswan-8d77eddec2bddbbf44eeec1b95c44a69426c87a6.tar.bz2 strongswan-8d77eddec2bddbbf44eeec1b95c44a69426c87a6.tar.xz |
further work for rekeying:
get liftimes from policy
added new state
initiation of rekeying done
proposal redone:
removed support for AH+ESP proposals
Diffstat (limited to 'src/charon/sa/states/responder_init.c')
-rw-r--r-- | src/charon/sa/states/responder_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charon/sa/states/responder_init.c b/src/charon/sa/states/responder_init.c index 8ee77269d..2923bbb27 100644 --- a/src/charon/sa/states/responder_init.c +++ b/src/charon/sa/states/responder_init.c @@ -343,7 +343,7 @@ static status_t build_sa_payload(private_responder_init_t *this,sa_payload_t *sa return DESTROY_ME; } /* get selected DH group to force policy, this is very restrictive!? */ - this->proposal->get_algorithm(this->proposal, PROTO_IKE, DIFFIE_HELLMAN_GROUP, &algo); + this->proposal->get_algorithm(this->proposal, DIFFIE_HELLMAN_GROUP, &algo); this->dh_group_number = algo->algorithm; this->logger->log(this->logger, CONTROL | LEVEL2, "SA Payload processed"); |