From 24bea1590123825413bd766fcd5bea2441c6b934 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Lozier?= Date: Tue, 14 Aug 2018 13:17:57 -0400 Subject: [PATCH] Make HAS_SNI = true --- Src/IronPython.Modules/_ssl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/IronPython.Modules/_ssl.cs b/Src/IronPython.Modules/_ssl.cs index 95f01d722..b078f196b 100644 --- a/Src/IronPython.Modules/_ssl.cs +++ b/Src/IronPython.Modules/_ssl.cs @@ -692,7 +692,7 @@ private static Exception ErrorDecoding(CodeContext context, params object[] args public const int VERIFY_X509_STRICT = 0x20; // from openssl/x509_vfy.h public const int VERIFY_X509_TRUSTED_FIRST = 0x8000; // from openssl/x509_vfy.h - public const bool HAS_SNI = false; + public const bool HAS_SNI = true; public const bool HAS_ECDH = true; public const bool HAS_NPN = false; public const bool HAS_ALPN = false;