aboutsummaryrefslogtreecommitdiffstats
path: root/src/libtls
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2010-08-19 07:27:30 +0200
committerAndreas Steffen <andreas.steffen@strongswan.org>2010-08-19 07:27:30 +0200
commitfd86fb518390f3b5e4acdd25db3a2316455b2e25 (patch)
tree8f33a50bf4965ca4415cf5863ccab61e348d4835 /src/libtls
parent1894622df203fa794a164b417e31d055266690cf (diff)
downloadstrongswan-fd86fb518390f3b5e4acdd25db3a2316455b2e25.tar.bz2
strongswan-fd86fb518390f3b5e4acdd25db3a2316455b2e25.tar.xz
removed debug output for TLS application data
Diffstat (limited to 'src/libtls')
-rw-r--r--src/libtls/tls_fragmentation.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/libtls/tls_fragmentation.c b/src/libtls/tls_fragmentation.c
index 8265b8c95..474deaefd 100644
--- a/src/libtls/tls_fragmentation.c
+++ b/src/libtls/tls_fragmentation.c
@@ -153,7 +153,6 @@ static status_t process_application(private_tls_fragmentation_t *this,
DBG1(DBG_IKE, "TLS fragment has invalid length");
return FAILED;
}
- DBG2(DBG_IKE, "received TLS application data");
status = this->application->process(this->application, reader);
if (status != NEED_MORE)
{
@@ -227,10 +226,6 @@ METHOD(tls_fragmentation_t, build, status_t,
{
*type = TLS_APPLICATION_DATA;
this->output = chunk_clone(msg->get_buf(msg));
- if (this->output.len)
- {
- DBG2(DBG_IKE, "sending TLS application data");
- }
}
}
}