// ********************************************************************** // // Copyright (c) 2002 // MutableRealms, Inc. // Huntsville, AL, USA // // All Rights Reserved // // ********************************************************************** #ifndef ICE_SSL_TRANSCEIVER_H #define ICE_SSL_TRANSCEIVER_H #include #include #include #include namespace IceInternal { class SslConnector; class SslAcceptor; class SslTransceiver : public Transceiver { public: virtual int fd(); virtual void close(); virtual void shutdown(); virtual void write(Buffer&, int); virtual void read(Buffer&, int); virtual std::string toString() const; private: SslTransceiver(const InstancePtr&, int); virtual ~SslTransceiver(); friend class SslConnector; friend class SslAcceptor; InstancePtr _instance; int _fd; TraceLevelsPtr _traceLevels; ::Ice::LoggerPtr _logger; fd_set _rFdSet; fd_set _wFdSet; }; } #endif