removed debug output for TLS application data

This commit is contained in:
Andreas Steffen
2010-08-19 07:27:30 +02:00
parent 1894622df2
commit fd86fb5183
-5
View File
@@ -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");
}
}
}
}