diff options
Diffstat (limited to 'cpp/src/IceSSL/SslClientTransceiver.h')
-rw-r--r-- | cpp/src/IceSSL/SslClientTransceiver.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/cpp/src/IceSSL/SslClientTransceiver.h b/cpp/src/IceSSL/SslClientTransceiver.h deleted file mode 100644 index fa392f467f0..00000000000 --- a/cpp/src/IceSSL/SslClientTransceiver.h +++ /dev/null @@ -1,37 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -#ifndef ICE_SSL_CLIENT_TRANSCEIVER_H -#define ICE_SSL_CLIENT_TRANSCEIVER_H - -#include <IceSSL/SslTransceiver.h> - -namespace IceSSL -{ - -class ClientContext; - -class SslClientTransceiver : public SslTransceiver -{ -public: - - virtual int handshake(int timeout = 0); - virtual void write(IceInternal::Buffer&, int); - -protected: - - virtual void showConnectionInfo(); - - SslClientTransceiver(const OpenSSLPluginIPtr&, SOCKET, const CertificateVerifierPtr&, SSL*, int); - friend class ClientContext; -}; - -} - -#endif |