summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/ClientContext.h
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2006-03-28 20:53:42 +0000
committerMark Spruiell <mes@zeroc.com>2006-03-28 20:53:42 +0000
commit0a58e76f0fde2dcddd5505951fe5f1201d36ced7 (patch)
tree1929d74d1a70670fe74e863de4dacad5c37aa7a4 /cpp/src/IceSSL/ClientContext.h
parentminor fix (diff)
downloadice-0a58e76f0fde2dcddd5505951fe5f1201d36ced7.tar.bz2
ice-0a58e76f0fde2dcddd5505951fe5f1201d36ced7.tar.xz
ice-0a58e76f0fde2dcddd5505951fe5f1201d36ced7.zip
new IceSSL plugin
Diffstat (limited to 'cpp/src/IceSSL/ClientContext.h')
-rw-r--r--cpp/src/IceSSL/ClientContext.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/cpp/src/IceSSL/ClientContext.h b/cpp/src/IceSSL/ClientContext.h
deleted file mode 100644
index a24c79ab47d..00000000000
--- a/cpp/src/IceSSL/ClientContext.h
+++ /dev/null
@@ -1,38 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2006 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 ICESSL_CLIENT_CONTEXT_H
-#define ICESSL_CLIENT_CONTEXT_H
-
-#include <IceSSL/OpenSSLPluginIF.h>
-#include <IceSSL/Context.h>
-
-namespace IceSSL
-{
-
-class ClientContext : public Context
-{
-public:
-
- virtual void configure(const GeneralConfig&,
- const CertificateAuthority&,
- const BaseCertificates&);
-
- SslTransceiverPtr createTransceiver(int, const OpenSSLPluginIPtr&, int);
-
-protected:
-
- ClientContext(const TraceLevelsPtr&, const Ice::CommunicatorPtr&);
-
- friend class OpenSSLPluginI;
-};
-
-}
-
-#endif