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