diff options
Diffstat (limited to 'cpp/src/IceSSL/SslConnectionOpenSSLClient.h')
-rw-r--r-- | cpp/src/IceSSL/SslConnectionOpenSSLClient.h | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/cpp/src/IceSSL/SslConnectionOpenSSLClient.h b/cpp/src/IceSSL/SslConnectionOpenSSLClient.h deleted file mode 100644 index f4c65e8630e..00000000000 --- a/cpp/src/IceSSL/SslConnectionOpenSSLClient.h +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2001 -// Mutable Realms, Inc. -// Huntsville, AL, USA -// -// All Rights Reserved -// -// ********************************************************************** - -#ifndef ICE_SSL_CONNECTION_OPENSSL_CLIENT_H -#define ICE_SSL_CONNECTION_OPENSSL_CLIENT_H - -#include <IceSSL/SslConnectionOpenSSL.h> - -namespace IceSSL -{ - -namespace OpenSSL -{ - -class ClientConnection : public Connection -{ -public: - - ClientConnection(const IceSSL::CertificateVerifierPtr&, - SSL*, - const IceSSL::PluginBaseIPtr&); - virtual ~ClientConnection(); - - virtual int handshake(int timeout = 0); - - virtual int write(IceInternal::Buffer&, int); - -protected: - - virtual void showConnectionInfo(); -}; - -} - -} - -#endif |