mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-28 07:28:13 +08:00
disabled SSL handshake error messages
This commit is contained in:
parent
d9551c505a
commit
64ca2965c0
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user