mantis 8688: fix uri parsing in secure case ; add tls11 and tls12 to list of protocols (.net.46 ones)

master
UbitUmarov 2020-04-15 11:48:03 +01:00
parent 944f3dd7ec
commit a6abc3d2b6
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ namespace OSHttpServer
private readonly IHttpContextFactory m_contextFactory;
private readonly int m_port;
private readonly ManualResetEvent m_shutdownEvent = new ManualResetEvent(false);
private readonly SslProtocols m_sslProtocol = SslProtocols.Tls | SslProtocols.Ssl3 | SslProtocols.Ssl2;
private readonly SslProtocols m_sslProtocol = SslProtocols.Tls | SslProtocols.Tls11 | SslProtocols.Tls12 | SslProtocols.Ssl3 | SslProtocols.Ssl2;
private TcpListener m_listener;
private ILogWriter m_logWriter = NullLogWriter.Instance;
private int m_pendingAccepts;