summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/OpenSSLPluginI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceSSL/OpenSSLPluginI.cpp')
-rw-r--r--cpp/src/IceSSL/OpenSSLPluginI.cpp6
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;