Skip to content

Commit ff01f40

Browse files
committed
bugfix: Nginx introduces ssl client hello callback in version 1.29.2
so we need to change nginx_version value to 1029001 here
1 parent 5246add commit ff01f40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ngx_stream_lua_ssl_client_helloby.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ ngx_stream_lua_ssl_client_hello_handler(ngx_ssl_conn_t *ssl_conn,
218218
return -1;
219219
}
220220

221-
#if (nginx_version > 1029000)
221+
#if (nginx_version > 1029001)
222222
/* see commit 0373fe5d98c1515640 for more details */
223223
rc = ngx_ssl_client_hello_callback(ssl_conn, al, arg);
224224

0 commit comments

Comments
 (0)