mantis 8688: fix uri parsing in secure case ; add tls11 and tls12 to list of protocols (.net.46 ones)
parent
944f3dd7ec
commit
a6abc3d2b6
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue