diff --git a/ffi/dotnet/Devolutions.IronRdp/src/Connection.cs b/ffi/dotnet/Devolutions.IronRdp/src/Connection.cs index 74df6571..6c2cc099 100644 --- a/ffi/dotnet/Devolutions.IronRdp/src/Connection.cs +++ b/ffi/dotnet/Devolutions.IronRdp/src/Connection.cs @@ -47,7 +47,10 @@ public static class Connection promise.SetResult(certificate!.GetPublicKey()); return true; }); - await sslStream.AuthenticateAsClientAsync(servername); + await sslStream.AuthenticateAsClientAsync(new SslClientAuthenticationOptions() + { + AllowTlsResume = false + }); serverPublicKey = await promise.Task; framedSsl = new Framed(sslStream); connector.MarkSecurityUpgradeAsDone();