1
0
mirror of https://github.com/xmrig/xmrig.git synced 2025-12-07 07:55:04 -05:00

increase stratum send buffer size

This commit is contained in:
Jethro Grassie
2019-12-15 03:23:07 -05:00
parent 29591609f5
commit 348916040c

View File

@@ -128,7 +128,7 @@ private:
static inline Client *getClient(void *data) { return m_storage.get(data); } 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; const char *m_agent;
Dns *m_dns; Dns *m_dns;
RecvBuf<kInputBufferSize> m_recvBuf; RecvBuf<kInputBufferSize> m_recvBuf;