Merge pull request #1418 from jtgrassie/buffer-size

increase stratum send buffer size
This commit is contained in:
xmrig 2019-12-15 15:38:27 +07:00 committed by GitHub
commit 06c70a7cd9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -128,7 +128,7 @@ private:
static inline Client *getClient(void *data) { return m_storage.get(data); }
char m_sendBuf[2048] = { 0 };
char m_sendBuf[4096] = { 0 };
const char *m_agent;
Dns *m_dns;
RecvBuf<kInputBufferSize> m_recvBuf;