diff options
author | Mark Spruiell <mes@zeroc.com> | 2002-04-26 02:53:33 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2002-04-26 02:53:33 +0000 |
commit | 0d715a1edd4484c9b7074c9c3cb283d468a538bc (patch) | |
tree | 45934688c11aa189731ae51f07032050affd12ef /cpp/src/IceSSL/SslConnectionOpenSSLClient.cpp | |
parent | Win32 fix (diff) | |
download | ice-0d715a1edd4484c9b7074c9c3cb283d468a538bc.tar.bz2 ice-0d715a1edd4484c9b7074c9c3cb283d468a538bc.tar.xz ice-0d715a1edd4484c9b7074c9c3cb283d468a538bc.zip |
Renaming Ice.Trace.Security to IceSSL.Trace.Security Cleaning up IceSSL
dependencies on Ice core
Diffstat (limited to 'cpp/src/IceSSL/SslConnectionOpenSSLClient.cpp')
-rw-r--r-- | cpp/src/IceSSL/SslConnectionOpenSSLClient.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/cpp/src/IceSSL/SslConnectionOpenSSLClient.cpp b/cpp/src/IceSSL/SslConnectionOpenSSLClient.cpp index c29998a3689..ee311d28838 100644 --- a/cpp/src/IceSSL/SslConnectionOpenSSLClient.cpp +++ b/cpp/src/IceSSL/SslConnectionOpenSSLClient.cpp @@ -9,7 +9,6 @@ // ********************************************************************** #include <Ice/Network.h> -#include <Ice/TraceLevels.h> #include <Ice/Logger.h> #include <Ice/LocalException.h> #include <IceSSL/OpenSSLUtils.h> @@ -17,8 +16,7 @@ #include <IceSSL/Exception.h> #include <IceSSL/OpenSSLJanitors.h> #include <IceSSL/SslConnectionOpenSSLClient.h> - -#include <sstream> +#include <IceSSL/TraceLevels.h> using namespace std; using namespace Ice; @@ -37,12 +35,10 @@ using namespace IceInternal; // but unfortunately, it appears that this is not properly picked up. // -IceSSL::OpenSSL::ClientConnection::ClientConnection(const TraceLevelsPtr& traceLevels, - const LoggerPtr& logger, - const IceSSL::CertificateVerifierPtr& certificateVerifier, +IceSSL::OpenSSL::ClientConnection::ClientConnection(const IceSSL::CertificateVerifierPtr& certificateVerifier, SSL* connection, const PluginBaseIPtr& plugin) : - Connection(traceLevels, logger, certificateVerifier, connection, plugin) + Connection(certificateVerifier, connection, plugin) { assert(_sslConnection != 0); |