summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/SslConnectionOpenSSLServer.cpp
diff options
context:
space:
mode:
authorAnthony Neal <aneal@zeroc.com>2002-03-05 17:28:32 +0000
committerAnthony Neal <aneal@zeroc.com>2002-03-05 17:28:32 +0000
commit06ff816fe028e296da7ed8f4596c4f00d0aaf7c3 (patch)
treebec46912989562691bdbc942997181dd0652f20d /cpp/src/Ice/SslConnectionOpenSSLServer.cpp
parentBig check in. Glacier client authentication (certificate verification) has (diff)
downloadice-06ff816fe028e296da7ed8f4596c4f00d0aaf7c3.tar.bz2
ice-06ff816fe028e296da7ed8f4596c4f00d0aaf7c3.tar.xz
ice-06ff816fe028e296da7ed8f4596c4f00d0aaf7c3.zip
Updates to fix a problem with multiple copies of
SslCertificateVerifierOpenSSL.h, parameters update in test/Glacier/stater/run.py and namespace issues.
Diffstat (limited to 'cpp/src/Ice/SslConnectionOpenSSLServer.cpp')
-rw-r--r--cpp/src/Ice/SslConnectionOpenSSLServer.cpp16
1 files changed, 12 insertions, 4 deletions
diff --git a/cpp/src/Ice/SslConnectionOpenSSLServer.cpp b/cpp/src/Ice/SslConnectionOpenSSLServer.cpp
index c9c05900ff2..54497011d7b 100644
--- a/cpp/src/Ice/SslConnectionOpenSSLServer.cpp
+++ b/cpp/src/Ice/SslConnectionOpenSSLServer.cpp
@@ -41,10 +41,18 @@ using std::dec;
// Public Methods
//
-IceSecurity::Ssl::OpenSSL::ServerConnection::ServerConnection(const CertificateVerifierPtr& certificateVerifier,
- SSL* connection,
- const SystemPtr& system) :
- Connection(certificateVerifier, connection, system)
+// Note: I would use a using directive of the form:
+// using IceSecurity::Ssl::CertificateVerifierPtr;
+// but unfortunately, it appears that this is not properly picked up.
+//
+
+IceSecurity::Ssl::OpenSSL::ServerConnection::ServerConnection(
+ const IceSecurity::Ssl::CertificateVerifierPtr& certificateVerifier,
+ SSL* connection,
+ const SystemPtr& system) :
+ Connection(certificateVerifier,
+ connection,
+ system)
{
}