Also increase socket read timeout.

This commit is contained in:
chriseth
2017-04-25 16:47:44 +02:00
parent ff00a14bec
commit e1689b6fbc
+1 -1
View File
@@ -68,7 +68,7 @@ private:
int m_socket;
/// Socket read timeout in milliseconds. Needs to be large because the key generation routine
/// might take long.
unsigned static constexpr m_readTimeOutMS = 15000;
unsigned static constexpr m_readTimeOutMS = 30000;
char m_readBuf[512000];
};
#endif