Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ME3Server_WV/ME3Server.cs
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ public static void threadRedirectorListener(object objs)
TcpClient tcpClient = RedirectorListener.AcceptTcpClient();
Logger.Log("[Redirector] New client connected", Color.DarkGreen);
SslStream clientStream = new SslStream(tcpClient.GetStream(), true);
clientStream.AuthenticateAsServer(RedirectorCert, false, SslProtocols.Ssl3, false);
clientStream.AuthenticateAsServer(RedirectorCert, false, SslProtocols.Ssl3 | SslProtocols.Tls | SslProtocols.Tls11 | SslProtocols.Tls12, false);
Thread tHandler = new Thread(threadRedirectorClientHandler);
RedirectorHandlerStruct h = new RedirectorHandlerStruct();
h.stream = clientStream;
Expand Down