From 891969f5eba4ae7dfb78602cd6feee9c48690c2b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Adrien=20B=C3=A9raud?= <adrien.beraud@savoirfairelinux.com>
Date: Tue, 17 May 2016 19:39:37 -0400
Subject: [PATCH] node: reduce max response time to 1s

---
 include/opendht/node.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/opendht/node.h b/include/opendht/node.h
index adf9e26b..63ee310a 100644
--- a/include/opendht/node.h
+++ b/include/opendht/node.h
@@ -87,7 +87,7 @@ struct Node {
     static constexpr const std::chrono::minutes NODE_EXPIRE_TIME {10};
 
     /* Time for a request to timeout */
-    static constexpr const std::chrono::seconds MAX_RESPONSE_TIME {3};
+    static constexpr const std::chrono::seconds MAX_RESPONSE_TIME {1};
 
 private:
 
-- 
GitLab