From ec724cd4838683c0d434798104b8eed6ba56bced Mon Sep 17 00:00:00 2001 From: willmafh Date: Sun, 19 Oct 2025 13:04:50 +0800 Subject: [PATCH] bugfix: Nginx introduces ssl client hello callback in version 1.29.2 so we need to change nginx_version value to 1029001 here --- src/ngx_http_lua_ssl_client_helloby.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngx_http_lua_ssl_client_helloby.c b/src/ngx_http_lua_ssl_client_helloby.c index d1f86414af..283d1017f0 100644 --- a/src/ngx_http_lua_ssl_client_helloby.c +++ b/src/ngx_http_lua_ssl_client_helloby.c @@ -220,7 +220,7 @@ ngx_http_lua_ssl_client_hello_handler(ngx_ssl_conn_t *ssl_conn, dd("first time"); -#if (nginx_version > 1029000) +#if (nginx_version > 1029001) /* see commit 0373fe5d98c1515640 for more details */ rc = ngx_ssl_client_hello_callback(ssl_conn, al, arg);