summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/SslConnectionOpenSSLClient.cpp
diff options
context:
space:
mode:
authorAnthony Neal <aneal@zeroc.com>2002-01-29 15:02:07 +0000
committerAnthony Neal <aneal@zeroc.com>2002-01-29 15:02:07 +0000
commit148b277e7902e39d895b6962f0ba043dd69d0424 (patch)
tree8228eaae79005409a86e1343029d67607db86e15 /cpp/src/Ice/SslConnectionOpenSSLClient.cpp
parentfixes (diff)
downloadice-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.cpp6
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)
{
}