diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-09-11 12:33:02 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-09-11 12:33:02 +0000 |
commit | 22056550f5f34cc2ee1cd28a23fd40545c566c4b (patch) | |
tree | dcd27d328d2e11f09924a407cc5fb08dfac32d8d /cpp/src/IceSSL/PluginBaseI.h | |
parent | fixed retry bug (diff) | |
download | ice-22056550f5f34cc2ee1cd28a23fd40545c566c4b.tar.bz2 ice-22056550f5f34cc2ee1cd28a23fd40545c566c4b.tar.xz ice-22056550f5f34cc2ee1cd28a23fd40545c566c4b.zip |
Removed the Connection classes, added the new SslTransceiver hierarchy,
cleaned up a lot of code.
Diffstat (limited to 'cpp/src/IceSSL/PluginBaseI.h')
-rw-r--r-- | cpp/src/IceSSL/PluginBaseI.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceSSL/PluginBaseI.h b/cpp/src/IceSSL/PluginBaseI.h index 85059f48b0f..c85fc8132cc 100644 --- a/cpp/src/IceSSL/PluginBaseI.h +++ b/cpp/src/IceSSL/PluginBaseI.h @@ -16,18 +16,18 @@ #include <Ice/ProtocolPluginFacadeF.h> #include <IceSSL/Plugin.h> #include <IceSSL/PluginBaseIF.h> -#include <IceSSL/SslConnectionF.h> #include <IceSSL/CertificateVerifierF.h> #include <IceSSL/TraceLevelsF.h> +#include <IceSSL/SslTransceiverF.h> namespace IceSSL { -class PluginBaseI : public IceSSL::Plugin +class PluginBaseI : public Plugin { public: - virtual ConnectionPtr createConnection(ContextType, int) = 0; + virtual SslTransceiverPtr createTransceiver(ContextType, int) = 0; virtual bool isConfigured(ContextType) = 0; |