// ********************************************************************** // // 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 #include #include namespace IceSecurity { namespace Ssl { namespace OpenSSL { using namespace Ice; class ServerConnection : public Connection { public: ServerConnection(SSL*, string&); virtual ~ServerConnection(); virtual void shutdown(); virtual int init(int timeout = 0); virtual int read(Buffer&, int); virtual int write(Buffer&, int); protected: virtual void showConnectionInfo(); }; } } } #endif