From 152b65b67ce6d452f5129245bf8c97dd3663a188 Mon Sep 17 00:00:00 2001 From: XMRig Date: Sat, 1 Jul 2017 21:11:41 +0300 Subject: [PATCH] Increase response timeout to 20 seconds. --- src/net/Client.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/Client.h b/src/net/Client.h index 65fdc42a6..295718303 100644 --- a/src/net/Client.h +++ b/src/net/Client.h @@ -48,7 +48,7 @@ public: ClosingState }; - constexpr static int kResponseTimeout = 15 * 1000; + constexpr static int kResponseTimeout = 20 * 1000; constexpr static int kKeepAliveTimeout = 60 * 1000; Client(int id, const char *agent, IClientListener *listener);