diff options
author | Jose <jose@zeroc.com> | 2017-03-20 11:11:16 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-03-20 11:11:16 +0100 |
commit | 11c1140a8041b3dcdd79b9244422e56ebe8da10c (patch) | |
tree | 04cba9afe9ec7fb3e723ca45cb76afcfb5cc4885 /cpp/src/IceSSL/Util.h | |
parent | Fixed (ICE-7678) - Python build failure with VS 2015 (diff) | |
download | ice-11c1140a8041b3dcdd79b9244422e56ebe8da10c.tar.bz2 ice-11c1140a8041b3dcdd79b9244422e56ebe8da10c.tar.xz ice-11c1140a8041b3dcdd79b9244422e56ebe8da10c.zip |
Update IceSSL::ConnectionInfo to use native certs and remove NativeConnectionInfo
Diffstat (limited to 'cpp/src/IceSSL/Util.h')
-rw-r--r-- | cpp/src/IceSSL/Util.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceSSL/Util.h b/cpp/src/IceSSL/Util.h index ac9697a990e..69471864a27 100644 --- a/cpp/src/IceSSL/Util.h +++ b/cpp/src/IceSSL/Util.h @@ -48,12 +48,12 @@ class ICESSL_API CertificateVerifier { public: - CertificateVerifier(std::function<bool(const std::shared_ptr<NativeConnectionInfo>&)>); - bool verify(const NativeConnectionInfoPtr&); + CertificateVerifier(std::function<bool(const std::shared_ptr<ConnectionInfo>&)>); + bool verify(const ConnectionInfoPtr&); private: - std::function<bool(const std::shared_ptr<NativeConnectionInfo>&)> _verify; + std::function<bool(const std::shared_ptr<ConnectionInfo>&)> _verify; }; using CertificateVerifierPtr = std::shared_ptr<CertificateVerifier>; |