/* */ #ifndef _D_DHT_SETUP_H_ #define _D_DHT_SETUP_H_ #include "common.h" #include namespace aria2 { class Logger; class Option; class DownloadEngine; class Command; class DHTSetup { private: static bool _initialized; Logger* _logger; public: DHTSetup(); ~DHTSetup(); void setup(std::deque& commands, DownloadEngine* e, const Option* option); static bool initialized(); }; } // namespace aria2 #endif // _D_DHT_SETUP_H_