diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-11-24 23:17:07 +0100 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-11-24 23:17:07 +0100 |
commit | 653da7c907ebff867e9e782fe6528a3737953f8f (patch) | |
tree | bb78414140930d927caf6695b053eee031ea68a4 /src | |
parent | eba568563cfaf8debef3e675509248ef93c162d9 (diff) | |
download | strongswan-653da7c907ebff867e9e782fe6528a3737953f8f.tar.bz2 strongswan-653da7c907ebff867e9e782fe6528a3737953f8f.tar.xz |
added more debugging in configuration attribute handling
Diffstat (limited to 'src')
-rw-r--r-- | src/charon/sa/tasks/ike_config.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/charon/sa/tasks/ike_config.c b/src/charon/sa/tasks/ike_config.c index 09250ff46..a42a1c68f 100644 --- a/src/charon/sa/tasks/ike_config.c +++ b/src/charon/sa/tasks/ike_config.c @@ -207,6 +207,8 @@ static void process_payloads(private_ike_config_t *this, message_t *message) attributes = cp->create_attribute_enumerator(cp); while (attributes->enumerate(attributes, &ca)) { + DBG2(DBG_IKE, "processing %N config attribute", + configuration_attribute_type_names, ca->get_type(ca)); process_attribute(this, ca); } attributes->destroy(attributes); @@ -258,6 +260,8 @@ static status_t build_i(private_ike_config_t *this, message_t *message) entry_t *entry; /* create configuration attribute */ + DBG2(DBG_IKE, "building %N config attribute", + configuration_attribute_type_names, type); ca = configuration_attribute_create_value(type, data); if (!cp) { |