We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tongsuo 版本 8.3.3
如果一个 server 同时支持国际 TLS 和 NTLS,然后设置了 min/max protocol version:
SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION); SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION);
那么当进行 NTLS 握手的时候,就会报 tls_early_post_process_client_hello:unsupported protocol 这个错误,原因应该是 ssl_choose_server_version_ntls 使用了 TLS 的版本检查。而且 TLS 的版本大于 NTLS 的,因此只要设置了 TLS version check,那么 NTLS 就不能通过
tls_early_post_process_client_hello:unsupported protocol
见 #310 (comment) 可以的话希望 TLS 和 NTLS 能分别设置
The text was updated successfully, but these errors were encountered:
dongbeiouba
Successfully merging a pull request may close this issue.
Tongsuo 版本 8.3.3
如果一个 server 同时支持国际 TLS 和 NTLS,然后设置了 min/max protocol version:
那么当进行 NTLS 握手的时候,就会报
tls_early_post_process_client_hello:unsupported protocol
这个错误,原因应该是 ssl_choose_server_version_ntls 使用了 TLS 的版本检查。而且 TLS 的版本大于 NTLS 的,因此只要设置了 TLS version check,那么 NTLS 就不能通过见 #310 (comment) 可以的话希望 TLS 和 NTLS 能分别设置
The text was updated successfully, but these errors were encountered: