diff options
Diffstat (limited to 'cpp/src/IceSSL/SslServerTransceiver.h')
-rw-r--r-- | cpp/src/IceSSL/SslServerTransceiver.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/cpp/src/IceSSL/SslServerTransceiver.h b/cpp/src/IceSSL/SslServerTransceiver.h new file mode 100644 index 00000000000..b0e60b8f1e8 --- /dev/null +++ b/cpp/src/IceSSL/SslServerTransceiver.h @@ -0,0 +1,34 @@ +// ********************************************************************** +// +// Copyright (c) 2002 +// Mutable Realms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#ifndef ICE_SSL_SERVER_TRANSCEIVER_H +#define ICE_SSL_SERVER_TRANSCEIVER_H + +#include <IceSSL/SslTransceiver.h> + +namespace IceSSL +{ + +class SslServerTransceiver : public SslTransceiver +{ +public: + virtual int handshake(int timeout = 0); + virtual void write(IceInternal::Buffer&, int); + +protected: + virtual void showConnectionInfo(); + SslServerTransceiver(const PluginBaseIPtr&, SOCKET, const OpenSSL::CertificateVerifierPtr&, SSL*); + friend class ServerContext; +}; + +} + +#endif + |