Updates: Enable TLS 1.1/1.2 support to fix connection issues with mesen.ca under https

This commit is contained in:
Sour 2019-05-11 21:59:29 -04:00
parent 81f6b81956
commit 8b12cd7815

View file

@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Net;
using System.Reflection;
using System.Runtime.ExceptionServices;
using System.Runtime.InteropServices;
@ -82,6 +83,9 @@ namespace Mesen.GUI
Application.ThreadException += Application_ThreadException;
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
//Enable TLS 1.0/1.1/1.2 support
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);