diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-11-08 05:51:21 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-11-08 05:51:21 +0000 |
commit | a87f73de1aba389cb70836534d093edfe30ff7e9 (patch) | |
tree | b47e29b4ed6982fc9a81b36af20e9d6a79b1ddcc /cpp/src/IceSSL/OpenSSLPluginI.h | |
parent | Icons update (diff) | |
download | ice-a87f73de1aba389cb70836534d093edfe30ff7e9.tar.bz2 ice-a87f73de1aba389cb70836534d093edfe30ff7e9.tar.xz ice-a87f73de1aba389cb70836534d093edfe30ff7e9.zip |
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=534
Diffstat (limited to 'cpp/src/IceSSL/OpenSSLPluginI.h')
-rw-r--r-- | cpp/src/IceSSL/OpenSSLPluginI.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/cpp/src/IceSSL/OpenSSLPluginI.h b/cpp/src/IceSSL/OpenSSLPluginI.h index 635f721cf7d..d4373120cb2 100644 --- a/cpp/src/IceSSL/OpenSSLPluginI.h +++ b/cpp/src/IceSSL/OpenSSLPluginI.h @@ -10,7 +10,6 @@ #ifndef ICE_SSL_OPENSSL_PLUGIN_I_H #define ICE_SSL_OPENSSL_PLUGIN_I_H -#include <IceUtil/Mutex.h> #include <IceUtil/RecMutex.h> #include <Ice/LoggerF.h> @@ -18,18 +17,19 @@ #include <Ice/PropertiesF.h> #include <Ice/ProtocolPluginFacadeF.h> -#include <IceSSL/Plugin.h> #include <IceSSL/OpenSSLPluginIF.h> #include <IceSSL/CertificateVerifierF.h> #include <IceSSL/TraceLevelsF.h> #include <IceSSL/SslTransceiverF.h> +#include <IceSSL/RSAPrivateKeyF.h> + +#include <IceSSL/Plugin.h> #include <IceSSL/CertificateDesc.h> #include <IceSSL/CertificateAuthority.h> #include <IceSSL/BaseCerts.h> #include <IceSSL/TempCerts.h> #include <IceSSL/ServerContext.h> #include <IceSSL/ClientContext.h> -#include <IceSSL/RSAPrivateKeyF.h> #include <IceSSL/DHParamsF.h> #include <openssl/ssl.h> @@ -50,8 +50,8 @@ public: OpenSSLPluginI(const IceInternal::ProtocolPluginFacadePtr&); virtual ~OpenSSLPluginI(); - - virtual SslTransceiverPtr createTransceiver(ContextType, int, int); + SslTransceiverPtr createServerTransceiver(int, int); + SslTransceiverPtr createClientTransceiver(int, int); virtual bool isConfigured(ContextType); virtual void configure(); @@ -138,4 +138,3 @@ private: } #endif - |