diff options
author | Marc Laukien <marc@zeroc.com> | 2004-03-29 23:21:40 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-03-29 23:21:40 +0000 |
commit | 64c22bc624d13bec6e9e88fc6411c0d465bb47db (patch) | |
tree | 69d4a68e52cab893fc5763a92f21e87bc9ffd58d /cpp/src/IceSSL/SslClientTransceiver.cpp | |
parent | *** empty log message *** (diff) | |
download | ice-64c22bc624d13bec6e9e88fc6411c0d465bb47db.tar.bz2 ice-64c22bc624d13bec6e9e88fc6411c0d465bb47db.tar.xz ice-64c22bc624d13bec6e9e88fc6411c0d465bb47db.zip |
ConnectionRefusedException
Diffstat (limited to 'cpp/src/IceSSL/SslClientTransceiver.cpp')
-rw-r--r-- | cpp/src/IceSSL/SslClientTransceiver.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/IceSSL/SslClientTransceiver.cpp b/cpp/src/IceSSL/SslClientTransceiver.cpp index 4deb7038700..ea90e1c54ef 100644 --- a/cpp/src/IceSSL/SslClientTransceiver.cpp +++ b/cpp/src/IceSSL/SslClientTransceiver.cpp @@ -284,14 +284,14 @@ IceSSL::SslClientTransceiver::handshake(int timeout) else // result == 0 { // - // The OpenSSL docs say that a result code of 0 indicates - // a graceful shutdown. In order to cause a retry in the - // Ice core, we raise ConnectFailedException. However, - // errno isn't set in this situation, so we always use + // The OpenSSL docs say that a result code of 0 + // indicates a graceful shutdown. In order to + // cause a retry in the Ice core, we raise + // ConnectionRefusedException. However, errno + // isn't set in this situation, so we always use // ECONNREFUSED. // - - ConnectFailedException ex(__FILE__, __LINE__); + ConnectionRefusedException ex(__FILE__, __LINE__); #ifdef _WIN32 ex.error = WSAECONNREFUSED; #else |