Correctly handle reconnection after finalize_server_connect() fails

finalize_server_connect() can fail for SSL connections, because SSL_connect() can fail.  Without this change, the client won't
try to reconnect after an initial SSL connection failure - it'll just wait forever.

Reported by g0z, thanks!
This commit is contained in:
Kevin Easton
2019-01-16 17:13:29 +11:00
parent ad93fed710
commit 95b57cc3cc
2 changed files with 62 additions and 45 deletions

View File

@@ -1,5 +1,8 @@
[Changes 1.2.2]
* Correctly handle reconnection after failure of SSL connection setup.
Reported by g0z. (caf)
* Add /EXEC -WINTARGET <target> argument. (caf)
* Update command-line help text to explain server descriptions.