// ********************************************************************** // // Copyright (c) 2001 // MutableRealms, Inc. // Huntsville, AL, USA // // All Rights Reserved // // ********************************************************************** #ifndef ICE_SSL_CONNECTION_OPENSSL_SERVER_H #define ICE_SSL_CONNECTION_OPENSSL_SERVER_H #include namespace IceSSL { namespace OpenSSL { class ServerConnection : public Connection { public: ServerConnection(const IceSSL::CertificateVerifierPtr&, SSL*, const IceSSL::PluginBaseIPtr&); virtual ~ServerConnection(); virtual int handshake(int timeout = 0); virtual int write(IceInternal::Buffer&, int); protected: virtual void showConnectionInfo(); }; } } #endif