summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/SslClientTransceiver.h
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2005-11-08 05:51:21 +0000
committerMatthew Newhook <matthew@zeroc.com>2005-11-08 05:51:21 +0000
commita87f73de1aba389cb70836534d093edfe30ff7e9 (patch)
treeb47e29b4ed6982fc9a81b36af20e9d6a79b1ddcc /cpp/src/IceSSL/SslClientTransceiver.h
parentIcons update (diff)
downloadice-a87f73de1aba389cb70836534d093edfe30ff7e9.tar.bz2
ice-a87f73de1aba389cb70836534d093edfe30ff7e9.tar.xz
ice-a87f73de1aba389cb70836534d093edfe30ff7e9.zip
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=534
Diffstat (limited to 'cpp/src/IceSSL/SslClientTransceiver.h')
-rw-r--r--cpp/src/IceSSL/SslClientTransceiver.h37
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