diff options
author | Anthony Neal <aneal@zeroc.com> | 2004-02-12 21:59:52 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2004-02-12 21:59:52 +0000 |
commit | af18d6bf6d51018be5418b061dce4c6e3e056ed2 (patch) | |
tree | 7eee5d58f59f69b66eee44a25b7058ea866cdc00 /cpp/src/IceSSL/ClientContext.cpp | |
parent | Fix (diff) | |
download | ice-af18d6bf6d51018be5418b061dce4c6e3e056ed2.tar.bz2 ice-af18d6bf6d51018be5418b061dce4c6e3e056ed2.tar.xz ice-af18d6bf6d51018be5418b061dce4c6e3e056ed2.zip |
Fix for bug 4194, you can now turn off certificate validity period checking
of peer certificates. See the IceSSL.Client.IgnoreValidPeriod and
IceSSL.Server.IgnoreValidPeriod properties.
Diffstat (limited to 'cpp/src/IceSSL/ClientContext.cpp')
-rw-r--r-- | cpp/src/IceSSL/ClientContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceSSL/ClientContext.cpp b/cpp/src/IceSSL/ClientContext.cpp index 8708ca58508..81ba2394be6 100644 --- a/cpp/src/IceSSL/ClientContext.cpp +++ b/cpp/src/IceSSL/ClientContext.cpp @@ -73,7 +73,7 @@ IceSSL::ClientContext::createTransceiver(int socket, const OpenSSLPluginIPtr& pl } IceSSL::ClientContext::ClientContext(const TraceLevelsPtr& traceLevels, const CommunicatorPtr& communicator) : - Context(traceLevels, communicator) + Context(traceLevels, communicator, Client) { _rsaPrivateKeyProperty = "IceSSL.Client.Overrides.RSA.PrivateKey"; _rsaPublicKeyProperty = "IceSSL.Client.Overrides.RSA.Certificate"; |