fix: dont force TLS 1.3

This commit is contained in:
2026-06-19 07:54:45 -03:00
parent e0e0eb5f12
commit 6ad87ecc18
+1 -1
View File
@@ -194,7 +194,7 @@ bool TinyMITMProxy::init()
return false;
}
TINYMITM_WRITELOG(verbose, "wolfssl context creation");
_clientCtx = wolfSSL_CTX_new(wolfTLSv1_3_client_method());
_clientCtx = wolfSSL_CTX_new(wolfTLS_client_method());
if (!_clientCtx)
{
TINYMITM_WRITELOG(error, "failed to create wolfssl context");