summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/SslConnection.cpp
diff options
context:
space:
mode:
authorAnthony Neal <aneal@zeroc.com>2002-09-11 12:33:02 +0000
committerAnthony Neal <aneal@zeroc.com>2002-09-11 12:33:02 +0000
commit22056550f5f34cc2ee1cd28a23fd40545c566c4b (patch)
treedcd27d328d2e11f09924a407cc5fb08dfac32d8d /cpp/src/IceSSL/SslConnection.cpp
parentfixed retry bug (diff)
downloadice-22056550f5f34cc2ee1cd28a23fd40545c566c4b.tar.bz2
ice-22056550f5f34cc2ee1cd28a23fd40545c566c4b.tar.xz
ice-22056550f5f34cc2ee1cd28a23fd40545c566c4b.zip
Removed the Connection classes, added the new SslTransceiver hierarchy,
cleaned up a lot of code.
Diffstat (limited to 'cpp/src/IceSSL/SslConnection.cpp')
-rw-r--r--cpp/src/IceSSL/SslConnection.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/cpp/src/IceSSL/SslConnection.cpp b/cpp/src/IceSSL/SslConnection.cpp
deleted file mode 100644
index 1cf3d8dee37..00000000000
--- a/cpp/src/IceSSL/SslConnection.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2001
-// Mutable Realms, Inc.
-// Huntsville, AL, USA
-//
-// All Rights Reserved
-//
-// **********************************************************************
-
-#include <IceSSL/SslConnection.h>
-
-void ::IceInternal::incRef(::IceSSL::Connection* p) { p->__incRef(); }
-void ::IceInternal::decRef(::IceSSL::Connection* p) { p->__decRef(); }
-
-IceSSL::Connection::Connection(const TraceLevelsPtr& traceLevels,
- const Ice::LoggerPtr& logger,
- const CertificateVerifierPtr& certificateVerifier) :
- _traceLevels(traceLevels),
- _logger(logger),
- _certificateVerifier(certificateVerifier)
-{
-}
-
-IceSSL::Connection::~Connection()
-{
-}
-