diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-03-19 19:59:40 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-03-19 19:59:40 +0000 |
commit | 285fbbfd2f7133eeb246b342b49417e1b88a725e (patch) | |
tree | e93702456b8d4e777f41e798b80f21e8f6ac10f9 /cpp/src/Ice/ConfigParser.cpp | |
parent | Updated to allow for binary representation of trusted certificates. (diff) | |
download | ice-285fbbfd2f7133eeb246b342b49417e1b88a725e.tar.bz2 ice-285fbbfd2f7133eeb246b342b49417e1b88a725e.tar.xz ice-285fbbfd2f7133eeb246b342b49417e1b88a725e.zip |
Updated to support binary addition of trusted certificates.
Diffstat (limited to 'cpp/src/Ice/ConfigParser.cpp')
-rw-r--r-- | cpp/src/Ice/ConfigParser.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/cpp/src/Ice/ConfigParser.cpp b/cpp/src/Ice/ConfigParser.cpp index dea372829e0..52643ce0fac 100644 --- a/cpp/src/Ice/ConfigParser.cpp +++ b/cpp/src/Ice/ConfigParser.cpp @@ -185,7 +185,9 @@ IceSSL::ConfigParser::process() } bool -IceSSL::ConfigParser::loadClientConfig(GeneralConfig& general, CertificateAuthority& certAuth, BaseCertificates& baseCerts) +IceSSL::ConfigParser::loadClientConfig(GeneralConfig& general,
+ CertificateAuthority& certAuth,
+ BaseCertificates& baseCerts) { bool retCode = false; string clientSectionString("SSLConfig:client"); @@ -221,9 +223,9 @@ IceSSL::ConfigParser::loadClientConfig(GeneralConfig& general, CertificateAuthor bool IceSSL::ConfigParser::loadServerConfig(GeneralConfig& general, - CertificateAuthority& certAuth, - BaseCertificates& baseCerts, - TempCertificates& tempCerts) + CertificateAuthority& certAuth, + BaseCertificates& baseCerts, + TempCertificates& tempCerts) { bool retCode = false; string serverSectionString("SSLConfig:server"); |