summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/ServerContext.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2005-06-14 17:00:21 +0000
committerMark Spruiell <mes@zeroc.com>2005-06-14 17:00:21 +0000
commit5344f3b20f8f0889c82b5fb124076f5894179437 (patch)
treef965fb6f7b70dbd96cac2cb637b4a578e936d3d7 /cpp/src/IceSSL/ServerContext.cpp
parentAdded application name to all the tests Made test executable unique names (diff)
downloadice-5344f3b20f8f0889c82b5fb124076f5894179437.tar.bz2
ice-5344f3b20f8f0889c82b5fb124076f5894179437.tar.xz
ice-5344f3b20f8f0889c82b5fb124076f5894179437.zip
fix for bug 332: IceSSL: is handshake retry loop necessary?
Diffstat (limited to 'cpp/src/IceSSL/ServerContext.cpp')
-rw-r--r--cpp/src/IceSSL/ServerContext.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/cpp/src/IceSSL/ServerContext.cpp b/cpp/src/IceSSL/ServerContext.cpp
index e6213a5c043..068348cf9c4 100644
--- a/cpp/src/IceSSL/ServerContext.cpp
+++ b/cpp/src/IceSSL/ServerContext.cpp
@@ -81,11 +81,7 @@ IceSSL::ServerContext::createTransceiver(int socket, const OpenSSLPluginIPtr& pl
}
SSL* ssl = createSSLConnection(socket);
- SslTransceiverPtr transceiver = new SslServerTransceiver(plugin, socket, _certificateVerifier, ssl);
-
- transceiverSetup(transceiver, timeout);
-
- return transceiver;
+ return new SslServerTransceiver(plugin, socket, _certificateVerifier, ssl, timeout);
}
//
@@ -101,7 +97,6 @@ IceSSL::ServerContext::ServerContext(const TraceLevelsPtr& traceLevels, const Co
_dsaPublicKeyProperty = "IceSSL.Server.Overrides.DSA.Certificate";
_caCertificateProperty = "IceSSL.Server.Overrides.CACertificate";
_passphraseRetriesProperty = "IceSSL.Server.Passphrase.Retries";
- _connectionHandshakeRetries = "IceSSL.Server.Handshake.Retries";
}
void