removed some redundant debug output
This commit is contained in:
@@ -413,11 +413,9 @@ static status_t send_client_hello(private_tls_peer_t *this,
|
||||
|
||||
/* add TLS cipher suites */
|
||||
count = this->crypto->get_cipher_suites(this->crypto, &suites);
|
||||
DBG2(DBG_TLS, "sending %d TLS cipher suites:", count);
|
||||
writer->write_uint16(writer, count * 2);
|
||||
for (i = 0; i < count; i++)
|
||||
{
|
||||
DBG2(DBG_TLS, " %N", tls_cipher_suite_names, suites[i]);
|
||||
writer->write_uint16(writer, suites[i]);
|
||||
}
|
||||
|
||||
|
||||
@@ -433,8 +433,6 @@ static status_t send_server_hello(private_tls_server_t *this,
|
||||
writer->write_data8(writer, chunk_empty);
|
||||
|
||||
/* add selected TLS cipher suite */
|
||||
DBG2(DBG_TLS, "sending TLS cipher suite: %N",
|
||||
tls_cipher_suite_names, this->suite);
|
||||
writer->write_uint16(writer, this->suite);
|
||||
|
||||
/* NULL compression only */
|
||||
|
||||
Reference in New Issue
Block a user