diff options
m--------- | depends/sibs-pubsub | 0 | ||||
-rw-r--r-- | src/Database.cpp | 8 |
2 files changed, 0 insertions, 8 deletions
diff --git a/depends/sibs-pubsub b/depends/sibs-pubsub -Subproject 3565289c19974ca874f87429cc74a87558249c8 +Subproject 54254462e432dcc6ef2bb306a9ee773d21314d1 diff --git a/src/Database.cpp b/src/Database.cpp index 50b5044..4422e1c 100644 --- a/src/Database.cpp +++ b/src/Database.cpp @@ -647,9 +647,6 @@ namespace odhtdb { InfoHash responseKey = receiveMessageKey; ++responseKey[0]; - - if(!bootstrapConnection.areWeListeningOnKey(responseKey.getKey())) - bootstrapConnection.listen(responseKey.getKey(), nullptr); return bootstrapConnection.listen(receiveMessageKey.getKey(), [callbackFunc, this, responseKey](const sibs::DirectConnectionPeer *peer, const void *data, const usize size) { @@ -664,11 +661,6 @@ namespace odhtdb void Database::sendCustomMessage(const InfoHash &requestKey, const void *data, const usize size) { - if(!bootstrapConnection.areWeListeningOnKey(requestKey.getKey())) - { - bootstrapConnection.listen(requestKey.getKey(), nullptr); - std::this_thread::sleep_for(std::chrono::seconds(3)); - } bootstrapConnection.put(requestKey.getKey(), data, size); } |