diff options
Diffstat (limited to 'cpp/src/IceSSL/ContextOpenSSLClient.h')
-rw-r--r-- | cpp/src/IceSSL/ContextOpenSSLClient.h | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/cpp/src/IceSSL/ContextOpenSSLClient.h b/cpp/src/IceSSL/ContextOpenSSLClient.h deleted file mode 100644 index 3a9921a92e6..00000000000 --- a/cpp/src/IceSSL/ContextOpenSSLClient.h +++ /dev/null @@ -1,39 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2002 -// Mutable Realms, Inc. -// Huntsville, AL, USA -// -// All Rights Reserved -// -// ********************************************************************** - -#ifndef ICESSL_CLIENT_CONTEXT_H -#define ICESSL_CLIENT_CONTEXT_H - -#include <IceSSL/ContextOpenSSL.h> - -namespace IceSSL -{ - -class ClientContext : public Context -{ -public: - - virtual void configure(const GeneralConfig&, - const CertificateAuthority&, - const BaseCertificates&); - - // Takes a socket fd as the first parameter. - virtual SslTransceiverPtr createTransceiver(int, const PluginBaseIPtr&); - -protected: - - ClientContext(const TraceLevelsPtr&, const Ice::LoggerPtr&, const Ice::PropertiesPtr&); - - friend class OpenSSL::PluginI; -}; - -} - -#endif |