summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/ContextOpenSSLClient.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/ContextOpenSSLClient.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/ContextOpenSSLClient.h')
-rw-r--r--cpp/src/IceSSL/ContextOpenSSLClient.h21
1 files changed, 8 insertions, 13 deletions
diff --git a/cpp/src/IceSSL/ContextOpenSSLClient.h b/cpp/src/IceSSL/ContextOpenSSLClient.h
index a42a4116b2a..3a9921a92e6 100644
--- a/cpp/src/IceSSL/ContextOpenSSLClient.h
+++ b/cpp/src/IceSSL/ContextOpenSSLClient.h
@@ -8,37 +8,32 @@
//
// **********************************************************************
-#ifndef ICE_SSL_CONTEXT_OPENSSL_CLIENT_H
-#define ICE_SSL_CONTEXT_OPENSSL_CLIENT_H
+#ifndef ICESSL_CLIENT_CONTEXT_H
+#define ICESSL_CLIENT_CONTEXT_H
#include <IceSSL/ContextOpenSSL.h>
namespace IceSSL
{
-namespace OpenSSL
-{
-
class ClientContext : public Context
{
public:
- virtual void configure(const IceSSL::GeneralConfig&,
- const IceSSL::CertificateAuthority&,
- const IceSSL::BaseCertificates&);
+ virtual void configure(const GeneralConfig&,
+ const CertificateAuthority&,
+ const BaseCertificates&);
// Takes a socket fd as the first parameter.
- virtual IceSSL::ConnectionPtr createConnection(int, const IceSSL::PluginBaseIPtr&);
+ virtual SslTransceiverPtr createTransceiver(int, const PluginBaseIPtr&);
protected:
- ClientContext(const IceSSL::TraceLevelsPtr&, const Ice::LoggerPtr&, const Ice::PropertiesPtr&);
+ ClientContext(const TraceLevelsPtr&, const Ice::LoggerPtr&, const Ice::PropertiesPtr&);
- friend class IceSSL::OpenSSL::PluginI;
+ friend class OpenSSL::PluginI;
};
}
-}
-
#endif