diff options
author | Martin Willi <martin@strongswan.org> | 2006-05-24 09:05:21 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-05-24 09:05:21 +0000 |
commit | 3a13a7808406f7f86d7c2e2286bbe1fe942ec662 (patch) | |
tree | 0a6efa231bf7a6630b2a77a27f371c217b85dd08 /src/charon/threads/stroke_interface.c | |
parent | b82908b8b585e87b7405c43774b433b927768a95 (diff) | |
download | strongswan-3a13a7808406f7f86d7c2e2286bbe1fe942ec662.tar.bz2 strongswan-3a13a7808406f7f86d7c2e2286bbe1fe942ec662.tar.xz |
- handle IKE_SA setup without a piggy-packed CHILD_SA
more IKEv2 conform
Diffstat (limited to 'src/charon/threads/stroke_interface.c')
-rwxr-xr-x | src/charon/threads/stroke_interface.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/charon/threads/stroke_interface.c b/src/charon/threads/stroke_interface.c index 9d9fb36b3..b8e5ba9a6 100755 --- a/src/charon/threads/stroke_interface.c +++ b/src/charon/threads/stroke_interface.c @@ -332,6 +332,8 @@ static void stroke_initiate(private_stroke_t *this, stroke_msg_t *msg) /* only initiate if it is an IKEv2 connection, ignore IKEv1 */ else if (connection->is_ikev2(connection)) { + this->stroke_logger->log(this->stroke_logger, CONTROL, "initiating connection \"%s\" (see log)...", msg->initiate.name); + job = initiate_ike_sa_job_create(connection); charon->job_queue->add(charon->job_queue, (job_t*)job); } |