Compare commits

...

4 Commits

1 changed files with 3 additions and 2 deletions

View File

@ -101,8 +101,9 @@ public sealed class ProtocolClient : ClientNode
{ {
Close(); Close();
IsConnected = false; IsConnected = false;
throw new InvalidOperationException("Handshake failed. " +
$"Server responded with {handshakeResponse.HandshakeResponse:D}"); var message = $"Handshake failed. Server responded with {handshakeResponse.HandshakeResponse:D}";
throw new InvalidOperationException(message);
} }
State = ClientState.Encrypting; State = ClientState.Encrypting;