summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/OpenSSLPluginI.h
diff options
context:
space:
mode:
authorAnthony Neal <aneal@zeroc.com>2002-09-11 12:33:02 +0000
committerAnthony Neal <aneal@zeroc.com>2002-09-11 12:33:02 +0000
commit22056550f5f34cc2ee1cd28a23fd40545c566c4b (patch)
treedcd27d328d2e11f09924a407cc5fb08dfac32d8d /cpp/src/IceSSL/OpenSSLPluginI.h
parentfixed retry bug (diff)
downloadice-22056550f5f34cc2ee1cd28a23fd40545c566c4b.tar.bz2
ice-22056550f5f34cc2ee1cd28a23fd40545c566c4b.tar.xz
ice-22056550f5f34cc2ee1cd28a23fd40545c566c4b.zip
Removed the Connection classes, added the new SslTransceiver hierarchy,
cleaned up a lot of code.
Diffstat (limited to 'cpp/src/IceSSL/OpenSSLPluginI.h')
-rw-r--r--cpp/src/IceSSL/OpenSSLPluginI.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceSSL/OpenSSLPluginI.h b/cpp/src/IceSSL/OpenSSLPluginI.h
index a143bd79ad9..36a9ac887ee 100644
--- a/cpp/src/IceSSL/OpenSSLPluginI.h
+++ b/cpp/src/IceSSL/OpenSSLPluginI.h
@@ -42,7 +42,7 @@ public:
PluginI(const IceInternal::ProtocolPluginFacadePtr&);
~PluginI();
- virtual IceSSL::ConnectionPtr createConnection(ContextType, int);
+ virtual IceSSL::SslTransceiverPtr createTransceiver(ContextType, int);
virtual bool isConfigured(ContextType);
virtual void configure();
@@ -78,8 +78,8 @@ public:
private:
- ServerContext _serverContext;
- ClientContext _clientContext;
+ IceSSL::ServerContext _serverContext;
+ IceSSL::ClientContext _clientContext;
// Mutex to ensure synchronization of calls to configure
// the contexts and calls to create connections.