aboutsummaryrefslogtreecommitdiffstats
path: root/src/libtls
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2011-04-21 21:04:11 +0200
committerAndreas Steffen <andreas.steffen@strongswan.org>2011-04-21 21:04:11 +0200
commit4b06f9f2659adb0766690d955bcb63cab0ac4c9e (patch)
treec751e7ddd2aa69d2d450eb46d56c46af32311aef /src/libtls
parent2778b6644b86dddb0be94f996893e35bda415950 (diff)
downloadstrongswan-4b06f9f2659adb0766690d955bcb63cab0ac4c9e.tar.bz2
strongswan-4b06f9f2659adb0766690d955bcb63cab0ac4c9e.tar.xz
debug type is EAP_TLS
Diffstat (limited to 'src/libtls')
-rw-r--r--src/libtls/tls_eap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libtls/tls_eap.c b/src/libtls/tls_eap.c
index bb3cd4976..685904fdf 100644
--- a/src/libtls/tls_eap.c
+++ b/src/libtls/tls_eap.c
@@ -137,9 +137,9 @@ METHOD(tls_eap_t, initiate, status_t,
pkt.identifier = this->identifier;
*out = chunk_clone(chunk_from_thing(pkt));
- DBG2(DBG_IKE, "sending %N start packet (%u bytes)",
+ DBG2(DBG_TLS, "sending %N start packet (%u bytes)",
eap_type_names, this->type, sizeof(eap_tls_packet_t));
- DBG3(DBG_IKE, "%B", out);
+ DBG3(DBG_TLS, "%B", out);
return NEED_MORE;
}
return FAILED;
@@ -321,7 +321,7 @@ METHOD(tls_eap_t, process, status_t,
if (++this->processed > this->max_msg_count)
{
- DBG1(DBG_IKE, "%N packet count exceeded (%d > %d)",
+ DBG1(DBG_TLS, "%N packet count exceeded (%d > %d)",
eap_type_names, this->type,
this->processed, this->max_msg_count);
return FAILED;
@@ -330,7 +330,7 @@ METHOD(tls_eap_t, process, status_t,
pkt = (eap_tls_packet_t*)in.ptr;
if (in.len < sizeof(eap_tls_packet_t) || untoh16(&pkt->length) != in.len)
{
- DBG1(DBG_IKE, "invalid %N packet length", eap_type_names, this->type);
+ DBG1(DBG_TLS, "invalid %N packet length", eap_type_names, this->type);
return FAILED;
}