sslutil: expose attribute indicating whether SNI is supported
authorGregory Szorc <gregory.szorc@gmail.com>
Tue, 29 Sep 2015 16:17:32 -0700
changeset 26622 9e15286609ae
parent 26621 36383507a6f8
child 26623 5a95fe44121d
sslutil: expose attribute indicating whether SNI is supported This will be used so clone bundles can advertise whether URLs require SNI. This will be explained more in a subsequent patch.
mercurial/sslutil.py
--- a/mercurial/sslutil.py	Sun Oct 11 23:58:07 2015 -0700
+++ b/mercurial/sslutil.py	Tue Sep 29 16:17:32 2015 -0700
@@ -16,6 +16,8 @@
 from .i18n import _
 from . import error, util
 
+hassni = getattr(ssl, 'HAS_SNI', False)
+
 _canloaddefaultcerts = False
 try:
     ssl_context = ssl.SSLContext