aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcharon
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2011-04-05 20:53:46 +0200
committerAndreas Steffen <andreas.steffen@strongswan.org>2011-04-05 20:53:46 +0200
commit555a8ca238cbdce8f90219cc2334da40c2b9c4cc (patch)
tree46d191f88230b1e6235e3382d4daa8ca5a34c62e /src/libcharon
parent934216df2d6a2b186afd0d3944f1a6c8c8086a16 (diff)
downloadstrongswan-555a8ca238cbdce8f90219cc2334da40c2b9c4cc.tar.bz2
strongswan-555a8ca238cbdce8f90219cc2334da40c2b9c4cc.tar.xz
added EAP identifier to debug output
Diffstat (limited to 'src/libcharon')
-rw-r--r--src/libcharon/plugins/eap_ttls/eap_ttls_peer.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/libcharon/plugins/eap_ttls/eap_ttls_peer.c b/src/libcharon/plugins/eap_ttls/eap_ttls_peer.c
index 96bd5ac7d..0ee6beaf9 100644
--- a/src/libcharon/plugins/eap_ttls/eap_ttls_peer.c
+++ b/src/libcharon/plugins/eap_ttls/eap_ttls_peer.c
@@ -167,13 +167,14 @@ METHOD(tls_application_t, process, status_t,
{
if (received_vendor)
{
- DBG1(DBG_IKE, "server requested vendor specific EAP method %d-%d",
- received_type, received_vendor);
+ DBG1(DBG_IKE, "server requested vendor specific EAP method %d-%d "
+ "(id: %u)", received_type, received_vendor,
+ in->get_identifier(in));
}
else
{
- DBG1(DBG_IKE, "server requested %N authentication",
- eap_type_names, received_type);
+ DBG1(DBG_IKE, "server requested %N authentication (id: %u)",
+ eap_type_names, received_type, in->get_identifier(in));
}
this->method = charon->eap->create_instance(charon->eap,
received_type, received_vendor,