diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-09-15 20:30:04 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-09-15 20:30:04 +0000 |
commit | 703b4b0332d143d05e1c41798bdf2084febcb9b1 (patch) | |
tree | 0219ccdaf145b049c44273e4afdb142c9be2de12 | |
parent | a2ab401c56e814c249e5e03ed2f37f213cdaf734 (diff) | |
download | strongswan-703b4b0332d143d05e1c41798bdf2084febcb9b1.tar.bz2 strongswan-703b4b0332d143d05e1c41798bdf2084febcb9b1.tar.xz |
connection name to IKE_SA initiating
-rw-r--r-- | src/charon/sa/tasks/child_create.c | 2 | ||||
-rw-r--r-- | src/charon/sa/tasks/ike_init.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/charon/sa/tasks/child_create.c b/src/charon/sa/tasks/child_create.c index 262532717..3947a84d1 100644 --- a/src/charon/sa/tasks/child_create.c +++ b/src/charon/sa/tasks/child_create.c @@ -722,7 +722,7 @@ static status_t build_r(private_child_create_t *this, message_t *message) build_payloads(this, message); - SIG(CHILD_UP_SUCCESS, "CHILD_SA %s established successfully", + SIG(CHILD_UP_SUCCESS, "CHILD_SA '%s' established successfully", this->child_sa->get_name(this->child_sa)); return SUCCESS; diff --git a/src/charon/sa/tasks/ike_init.c b/src/charon/sa/tasks/ike_init.c index d14567234..42b47a82f 100644 --- a/src/charon/sa/tasks/ike_init.c +++ b/src/charon/sa/tasks/ike_init.c @@ -226,7 +226,8 @@ static status_t build_i(private_ike_init_t *this, message_t *message) status_t status; this->config = this->ike_sa->get_ike_cfg(this->ike_sa); - SIG(IKE_UP_START, "initiating IKE_SA to %H", + SIG(IKE_UP_START, "initiating IKE_SA '%s' to %H", + this->ike_sa->get_name(this->ike_sa), this->config->get_other_host(this->config)); this->ike_sa->set_state(this->ike_sa, IKE_CONNECTING); |