summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/SslConnector.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceSSL/SslConnector.cpp')
-rw-r--r--cpp/src/IceSSL/SslConnector.cpp61
1 files changed, 0 insertions, 61 deletions
diff --git a/cpp/src/IceSSL/SslConnector.cpp b/cpp/src/IceSSL/SslConnector.cpp
deleted file mode 100644
index 9d4377a7418..00000000000
--- a/cpp/src/IceSSL/SslConnector.cpp
+++ /dev/null
@@ -1,61 +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.
-//
-// **********************************************************************
-
-#include <Ice/Network.h>
-#include <Ice/LoggerUtil.h>
-
-#include <IceSSL/OpenSSLPluginI.h>
-#include <IceSSL/SslConnector.h>
-#include <IceSSL/SslTransceiver.h>
-#include <IceSSL/TraceLevels.h>
-
-using namespace std;
-using namespace Ice;
-using namespace IceInternal;
-
-TransceiverPtr
-IceSSL::SslConnector::connect(int timeout)
-{
- if(_traceLevels->network >= 2)
- {
- Trace out(_logger, _traceLevels->networkCat);
- out << "trying to establish ssl connection to " << toString();
- }
-
- SOCKET fd = createSocket(false);
- setBlock(fd, false);
- doConnect(fd, _addr, timeout);
-
- if(_traceLevels->network >= 1)
- {
- Trace out(_logger, _traceLevels->networkCat);
- out << "ssl connection established\n" << fdToString(fd);
- }
-
- return _plugin->createClientTransceiver(
- static_cast<int>(fd), timeout);
-}
-
-string
-IceSSL::SslConnector::toString() const
-{
- return addrToString(_addr);
-}
-
-IceSSL::SslConnector::SslConnector(const OpenSSLPluginIPtr& plugin, const string& host, int port) :
- _plugin(plugin),
- _traceLevels(plugin->getTraceLevels()),
- _logger(plugin->getLogger())
-{
- getAddress(host, port, _addr);
-}
-
-IceSSL::SslConnector::~SslConnector()
-{
-}