diff options
author | Jose <jose@zeroc.com> | 2016-11-07 12:01:27 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-11-07 12:01:27 +0100 |
commit | 2c9a7b1d54dc95c1b6307643e6fbfc89dc02607e (patch) | |
tree | 211cf29b239a4c874f838c9777b7d610c8306c67 /cpp/src/IceSSL/SSLEngine.cpp | |
parent | Revert "Replaced double and triple underscores in C++ by ice-prefixed names" (diff) | |
download | ice-2c9a7b1d54dc95c1b6307643e6fbfc89dc02607e.tar.bz2 ice-2c9a7b1d54dc95c1b6307643e6fbfc89dc02607e.tar.xz ice-2c9a7b1d54dc95c1b6307643e6fbfc89dc02607e.zip |
UWP ssl improvements
Diffstat (limited to 'cpp/src/IceSSL/SSLEngine.cpp')
-rw-r--r-- | cpp/src/IceSSL/SSLEngine.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/cpp/src/IceSSL/SSLEngine.cpp b/cpp/src/IceSSL/SSLEngine.cpp index ed286df2b5b..4f8f927495f 100644 --- a/cpp/src/IceSSL/SSLEngine.cpp +++ b/cpp/src/IceSSL/SSLEngine.cpp @@ -291,3 +291,27 @@ IceSSL::SSLEngine::verifyPeer(const string& address, const NativeConnectionInfoP throw ex; } } + +bool +IceSSL::SSLEngine::getCheckCertName() const +{ + return _checkCertName; +} + +int +IceSSL::SSLEngine::getVerifyPeer() const +{ + return _verifyPeer; +} + +int +IceSSL::SSLEngine::securityTraceLevel() const +{ + return _securityTraceLevel; +} + +std::string +IceSSL::SSLEngine::securityTraceCategory() const +{ + return _securityTraceCategory; +} |