#ifndef TORRENT_GLOBALS_H #define TORRENT_GLOBALS_H #include #include "rpc/ip_table_list.h" class Control; extern rpc::ip_table_list ip_tables; extern Control* control; std::string expand_path(const std::string& path); namespace rpc { class SCgi; } namespace session { class SessionManager; } namespace scgi_thread { torrent::system::Thread* thread(); std::thread::id thread_id(); void callback_interrupt(torrent::system::callback_id& id, std::function&& fn); rpc::SCgi* scgi(); void set_scgi(rpc::SCgi* scgi); void set_rpc_log(const std::string& filename); } // namespace torrent::scgi_thread namespace session_thread { torrent::system::Thread* thread(); std::thread::id thread_id(); void callback(std::function&& fn); void callback(torrent::system::callback_id& id, std::function&& fn); void cancel_callback(torrent::system::callback_id& id); session::SessionManager* manager(); std::string session_path(); } // namespace torrent::session_thread #endif