/* * $Id$ * DEBUG: section 93 eCAP Interface */ #ifndef SQUID_ECAP_HOST_H #define SQUID_ECAP_HOST_H #include namespace Adaptation { namespace Ecap { // Squid wrapper, providing host application functionality to eCAP services. class Host : public libecap::host::Host { public: // About virtual std::string uri() const; // unique across all vendors virtual void describe(std::ostream &os) const; // free-format info // Service management virtual void noteService(const libecap::weak_ptr &s); // Logging virtual std::ostream *openDebug(libecap::LogVerbosity lv); virtual void closeDebug(std::ostream *debug); static void Register(); ///< register adaptation host private: Host(); Host (const Host&); ///< not implemented Host& operator= (const Host&); ///< not implemented }; extern const libecap::Name protocolInternal; extern const libecap::Name protocolCacheObj; extern const libecap::Name protocolIcp; #if USE_HTCP extern const libecap::Name protocolHtcp; #endif } // namespace Ecap } // namespace Adaptation #endif /* SQUID_ECAP_HOST_H */ .