#pragma once #include "Hash.hpp" #include namespace odhtdb { class DhtKey { public: DhtKey(const Hash &key); const dht::InfoHash& getNewDataListenerKey(); const dht::InfoHash& getRequestOldDataKey(); private: dht::InfoHash infoHash; unsigned char firstByteOriginalValue; }; }