aboutsummaryrefslogtreecommitdiff
path: root/include/DhtKey.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/DhtKey.hpp')
-rw-r--r--include/DhtKey.hpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/include/DhtKey.hpp b/include/DhtKey.hpp
deleted file mode 100644
index 7c30ee3..0000000
--- a/include/DhtKey.hpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#pragma once
-
-#include "Hash.hpp"
-#include <opendht/infohash.h>
-
-namespace odhtdb
-{
- class DhtKey
- {
- public:
- DhtKey(const Hash &key);
-
- const dht::InfoHash& getNewDataListenerKey();
- const dht::InfoHash& getRequestOldDataKey();
- private:
- dht::InfoHash infoHash;
- unsigned char firstByteOriginalValue;
- };
-}