aboutsummaryrefslogtreecommitdiffstats
path: root/src/libtls
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2010-08-24 09:00:52 +0200
committerAndreas Steffen <andreas.steffen@strongswan.org>2010-08-24 09:02:51 +0200
commitc1a929daa7f0763fe78b6fe1594b482c946253c7 (patch)
tree92ad62854bca39cc8e75733b3a7c75821f7e28e1 /src/libtls
parentbda7d9d940d73f0a0d5b19136d99ea16b5178844 (diff)
downloadstrongswan-c1a929daa7f0763fe78b6fe1594b482c946253c7.tar.bz2
strongswan-c1a929daa7f0763fe78b6fe1594b482c946253c7.tar.xz
removed some redundant debug output
Diffstat (limited to 'src/libtls')
-rw-r--r--src/libtls/tls_peer.c2
-rw-r--r--src/libtls/tls_server.c2
2 files changed, 0 insertions, 4 deletions
diff --git a/src/libtls/tls_peer.c b/src/libtls/tls_peer.c
index a08e411c7..537d0f9a0 100644
--- a/src/libtls/tls_peer.c
+++ b/src/libtls/tls_peer.c
@@ -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]);
}
diff --git a/src/libtls/tls_server.c b/src/libtls/tls_server.c
index a16977045..54c4633be 100644
--- a/src/libtls/tls_server.c
+++ b/src/libtls/tls_server.c
@@ -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 */