summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/ServerContext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceSSL/ServerContext.cpp')
-rw-r--r--cpp/src/IceSSL/ServerContext.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceSSL/ServerContext.cpp b/cpp/src/IceSSL/ServerContext.cpp
index 068348cf9c4..7434450e697 100644
--- a/cpp/src/IceSSL/ServerContext.cpp
+++ b/cpp/src/IceSSL/ServerContext.cpp
@@ -12,7 +12,7 @@
#include <IceSSL/Exception.h>
#include <IceSSL/ServerContext.h>
-#include <IceSSL/SslServerTransceiver.h>
+#include <IceSSL/SslTransceiver.h>
#include <IceSSL/OpenSSLUtils.h>
#include <IceSSL/TraceLevels.h>
@@ -81,7 +81,7 @@ IceSSL::ServerContext::createTransceiver(int socket, const OpenSSLPluginIPtr& pl
}
SSL* ssl = createSSLConnection(socket);
- return new SslServerTransceiver(plugin, socket, _certificateVerifier, ssl, timeout);
+ return new SslTransceiver(IceSSL::Server, plugin, socket, _certificateVerifier, ssl, timeout);
}
//