From 64ca2965c0fa9f44f95591bb32dee71f98d1d258 Mon Sep 17 00:00:00 2001 From: valenok Date: Mon, 30 Aug 2010 23:41:17 +0100 Subject: [PATCH] disabled SSL handshake error messages --- mongoose.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mongoose.c b/mongoose.c index 5179d70d..41b7ee3a 100644 --- a/mongoose.c +++ b/mongoose.c @@ -3619,7 +3619,8 @@ static void worker_thread(struct mg_context *ctx) { SSL_set_fd(conn->ssl, conn->client.sock) != 1) { cry(conn, "%s: SSL_set_fd: %s", __func__, ssl_error()); } else if (conn->client.is_ssl && SSL_accept(conn->ssl) != 1) { - cry(conn, "%s: SSL handshake error: %s", __func__, ssl_error()); + // This is very noisy, disabling + // cry(conn, "%s: SSL handshake error: %s", __func__, ssl_error()); } else { process_new_connection(conn); }