diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-10-29 18:44:20 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-10-29 18:44:20 +0000 |
commit | 8597953fa6e03ab064f536ce7056628fb54b8674 (patch) | |
tree | c4c2129f39ca2cfa99f1f8335ee12f534f32fff4 /cpp/src/IceSSL/OpenSSLPluginI.cpp | |
parent | Minor fixes. (diff) | |
download | ice-8597953fa6e03ab064f536ce7056628fb54b8674.tar.bz2 ice-8597953fa6e03ab064f536ce7056628fb54b8674.tar.xz ice-8597953fa6e03ab064f536ce7056628fb54b8674.zip |
Implemented connect-time handshaking.
Diffstat (limited to 'cpp/src/IceSSL/OpenSSLPluginI.cpp')
-rw-r--r-- | cpp/src/IceSSL/OpenSSLPluginI.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceSSL/OpenSSLPluginI.cpp b/cpp/src/IceSSL/OpenSSLPluginI.cpp index 3bfbba484bd..74096530822 100644 --- a/cpp/src/IceSSL/OpenSSLPluginI.cpp +++ b/cpp/src/IceSSL/OpenSSLPluginI.cpp @@ -192,7 +192,7 @@ IceSSL::OpenSSLPluginI::~OpenSSLPluginI() } IceSSL::SslTransceiverPtr -IceSSL::OpenSSLPluginI::createTransceiver(ContextType connectionType, int socket) +IceSSL::OpenSSLPluginI::createTransceiver(ContextType connectionType, int socket, int timeout) { IceUtil::RecMutex::Lock sync(_configMutex); @@ -215,11 +215,11 @@ IceSSL::OpenSSLPluginI::createTransceiver(ContextType connectionType, int socket if(connectionType == Client) { - transceiver = _clientContext.createTransceiver(socket, this); + transceiver = _clientContext.createTransceiver(socket, this, timeout); } else if(connectionType == Server) { - transceiver = _serverContext.createTransceiver(socket, this); + transceiver = _serverContext.createTransceiver(socket, this, timeout); } return transceiver; |