aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2007-01-11 20:03:38 +0000
committerAndreas Steffen <andreas.steffen@strongswan.org>2007-01-11 20:03:38 +0000
commit883c1e30847c4d56ebc56f7b7ee570b0a5dab43f (patch)
tree49ddc5bea37131c0c710eb2fe59354cbd4c548d5 /src
parent74ca038e93acc43ee43f2b7a6cb73e287bbc93d0 (diff)
downloadstrongswan-883c1e30847c4d56ebc56f7b7ee570b0a5dab43f.tar.bz2
strongswan-883c1e30847c4d56ebc56f7b7ee570b0a5dab43f.tar.xz
name the created CHILD_SA
Diffstat (limited to 'src')
-rw-r--r--src/charon/sa/transactions/create_child_sa.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/charon/sa/transactions/create_child_sa.c b/src/charon/sa/transactions/create_child_sa.c
index bcb3ced38..1d5142b3b 100644
--- a/src/charon/sa/transactions/create_child_sa.c
+++ b/src/charon/sa/transactions/create_child_sa.c
@@ -843,7 +843,8 @@ static status_t get_response(private_create_child_sa_t *this, message_t *request
}
else
{
- SIG(CHILD_UP_SUCCESS, "CHILD_SA created");
+ SIG(CHILD_UP_SUCCESS, "CHILD_SA '%s' created",
+ this->policy->get_name(this->policy));
}
return SUCCESS;
}
@@ -1039,7 +1040,8 @@ static status_t conclude(private_create_child_sa_t *this, message_t *response,
}
else
{
- SIG(CHILD_UP_SUCCESS, "CHILD_SA created");
+ SIG(CHILD_UP_SUCCESS, "CHILD_SA '%s' created",
+ this->policy->get_name(this->policy));
}
if (this->lost)
{