diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-03-05 17:28:32 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-03-05 17:28:32 +0000 |
commit | 06ff816fe028e296da7ed8f4596c4f00d0aaf7c3 (patch) | |
tree | bec46912989562691bdbc942997181dd0652f20d /cpp/src/Ice/SslConnectionOpenSSLServer.cpp | |
parent | Big check in. Glacier client authentication (certificate verification) has (diff) | |
download | ice-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.cpp | 16 |
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) { } |