Skip to content

Commit 70ba1d8

Browse files
author
zhengshuxin
committed
Don't set the SSL version as the default status.
1 parent 7e09808 commit 70ba1d8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib_acl/src/init/acl_init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
#include "init.h"
2727

28-
static char *version = "3.6.4 20251127-19:00";
28+
static char *version = "3.6.4 20251128-10:00";
2929

3030
const char *acl_version(void)
3131
{

lib_acl_cpp/include/acl_cpp/stream/sslbase_conf.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class ACL_CPP_API ssl_sni_checker {
2222
};
2323

2424
enum {
25-
ssl_ver_unknown,
25+
ssl_ver_def, // Don't set the SSL version.
2626
ssl_ver_3_0, // Not support.
2727
tls_ver_1_0, // Not support.
2828
tls_ver_1_1, // Not support.
@@ -32,7 +32,7 @@ enum {
3232

3333
class ACL_CPP_API sslbase_conf : public noncopyable {
3434
public:
35-
sslbase_conf() : checker_(NULL), ver_min_(tls_ver_1_2), ver_max_(tls_ver_1_3) {}
35+
sslbase_conf() : checker_(NULL), ver_min_(ssl_ver_def), ver_max_(ssl_ver_def) {}
3636
virtual ~sslbase_conf() {}
3737

3838
/**

0 commit comments

Comments
 (0)