Also increase socket read timeout.

This commit is contained in:
chriseth 2017-03-20 12:37:48 +01:00
parent ff00a14bec
commit e1689b6fbc

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