diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-01-29 15:02:07 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-01-29 15:02:07 +0000 |
commit | 148b277e7902e39d895b6962f0ba043dd69d0424 (patch) | |
tree | 8228eaae79005409a86e1343029d67607db86e15 /cpp/src/Ice/SslConnectionOpenSSLClient.cpp | |
parent | fixes (diff) | |
download | ice-148b277e7902e39d895b6962f0ba043dd69d0424.tar.bz2 ice-148b277e7902e39d895b6962f0ba043dd69d0424.tar.xz ice-148b277e7902e39d895b6962f0ba043dd69d0424.zip |
Secure UDP, cut number 2. Also, updates to the SSL implementation to use
Marc's Shared and Handle classes.
Diffstat (limited to 'cpp/src/Ice/SslConnectionOpenSSLClient.cpp')
-rw-r--r-- | cpp/src/Ice/SslConnectionOpenSSLClient.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/Ice/SslConnectionOpenSSLClient.cpp b/cpp/src/Ice/SslConnectionOpenSSLClient.cpp index aae7c7ddcf7..c40ef3f0ccb 100644 --- a/cpp/src/Ice/SslConnectionOpenSSLClient.cpp +++ b/cpp/src/Ice/SslConnectionOpenSSLClient.cpp @@ -22,6 +22,8 @@ using IceSecurity::Ssl::ShutdownException; using namespace IceInternal; using namespace std; +using IceSecurity::Ssl::SystemPtr; + //////////////////////////////////////////////// ////////// SslConnectionOpenSSLClient ////////// //////////////////////////////////////////////// @@ -30,8 +32,8 @@ using namespace std; // Public Methods // -IceSecurity::Ssl::OpenSSL::ClientConnection::ClientConnection(SSL* connection, string& systemID) : - Connection(connection, systemID) +IceSecurity::Ssl::OpenSSL::ClientConnection::ClientConnection(SSL* connection, const SystemPtr& system) : + Connection(connection, system) { } |