summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/ServerContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceSSL/ServerContext.h')
-rw-r--r--cpp/src/IceSSL/ServerContext.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/cpp/src/IceSSL/ServerContext.h b/cpp/src/IceSSL/ServerContext.h
deleted file mode 100644
index 30899bb77d2..00000000000
--- a/cpp/src/IceSSL/ServerContext.h
+++ /dev/null
@@ -1,40 +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_SERVER_CONTEXT_H
-#define ICESSL_SERVER_CONTEXT_H
-
-#include <IceSSL/OpenSSLPluginIF.h>
-#include <IceSSL/Context.h>
-
-namespace IceSSL
-{
-
-class ServerContext : public Context
-{
-public:
-
- virtual void configure(const GeneralConfig&,
- const CertificateAuthority&,
- const BaseCertificates&);
-
- SslTransceiverPtr createTransceiver(int, const OpenSSLPluginIPtr&, int);
-
-protected:
-
- ServerContext(const TraceLevelsPtr&, const Ice::CommunicatorPtr&);
-
- virtual void loadCertificateAuthority(const CertificateAuthority& certAuth);
-
- friend class OpenSSLPluginI;
-};
-
-}
-
-#endif