Skip to content

Commit

Permalink
Stop dumping the list of cipher avaiable in DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
renecannao committed May 14, 2023
1 parent 52052de commit 1799f7a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ void ProxySQL_Main_init_SSL_module() {
}
//SSL_CTX_set_options(GloVars.global.ssl_ctx, SSL_OP_NO_SSLv3); // no necessary, because of previous SSL_CTX_set_min_proto_version
#ifdef DEBUG
#if 0
{
STACK_OF(SSL_CIPHER) *ciphers;
ciphers = SSL_CTX_get_ciphers(GloVars.global.ssl_ctx);
Expand All @@ -301,7 +302,8 @@ void ProxySQL_Main_init_SSL_module() {
}
fprintf(stderr,"\n");
}
#endif
#endif // 0
#endif // DEBUG
std::string msg = "";
ProxySQL_create_or_load_TLS(true, msg);
}
Expand Down

0 comments on commit 1799f7a

Please sign in to comment.