mirror of
https://github.com/xmrig/xmrig.git
synced 2024-12-23 12:09:22 +00:00
Fixed build with APP_DEBUG.
This commit is contained in:
parent
1ebaf677e0
commit
a73ad9b089
6 changed files with 12 additions and 12 deletions
|
@ -123,7 +123,7 @@ static void print_pools(xmrig::Config *config)
|
||||||
|
|
||||||
# ifdef APP_DEBUG
|
# ifdef APP_DEBUG
|
||||||
for (size_t i = 0; i < pools.size(); ++i) {
|
for (size_t i = 0; i < pools.size(); ++i) {
|
||||||
Log::i()->text("%s:%d, user: %s, pass: %s, ka: %d, nicehash: %d", pools[i]->host(), pools[i]->port(), pools[i]->user(), pools[i]->password(), pools[i]->keepAlive(), pools[i]->isNicehash());
|
Log::i()->text("%s:%d, user: %s, pass: %s, ka: %d, nicehash: %d", pools[i].host(), pools[i].port(), pools[i].user(), pools[i].password(), pools[i].keepAlive(), pools[i].isNicehash());
|
||||||
}
|
}
|
||||||
# endif
|
# endif
|
||||||
}
|
}
|
||||||
|
|
|
@ -107,7 +107,7 @@ void Client::connect()
|
||||||
*/
|
*/
|
||||||
void Client::connect(const Pool &url)
|
void Client::connect(const Pool &url)
|
||||||
{
|
{
|
||||||
setUrl(url);
|
setPool(url);
|
||||||
connect();
|
connect();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -131,7 +131,7 @@ void Client::deleteLater()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void Client::setUrl(const Pool &pool)
|
void Client::setPool(const Pool &pool)
|
||||||
{
|
{
|
||||||
if (!pool.isValid()) {
|
if (!pool.isValid()) {
|
||||||
return;
|
return;
|
||||||
|
@ -360,9 +360,9 @@ int Client::resolve(const char *host)
|
||||||
|
|
||||||
int64_t Client::send(size_t size)
|
int64_t Client::send(size_t size)
|
||||||
{
|
{
|
||||||
LOG_DEBUG("[%s:%u] send (%d bytes): \"%s\"", m_url.host(), m_url.port(), size, m_sendBuf);
|
LOG_DEBUG("[%s] send (%d bytes): \"%s\"", m_pool.url(), size, m_sendBuf);
|
||||||
if (state() != ConnectedState || !uv_is_writable(m_stream)) {
|
if (state() != ConnectedState || !uv_is_writable(m_stream)) {
|
||||||
LOG_DEBUG_ERR("[%s:%u] send failed, invalid state: %d", m_url.host(), m_url.port(), m_state);
|
LOG_DEBUG_ERR("[%s] send failed, invalid state: %d", m_pool.url(), m_state);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -475,7 +475,7 @@ void Client::parse(char *line, size_t len)
|
||||||
|
|
||||||
line[len - 1] = '\0';
|
line[len - 1] = '\0';
|
||||||
|
|
||||||
LOG_DEBUG("[%s:%u] received (%d bytes): \"%s\"", m_url.host(), m_url.port(), len, line);
|
LOG_DEBUG("[%s] received (%d bytes): \"%s\"", m_pool.url(), len, line);
|
||||||
|
|
||||||
if (len < 32 || line[0] != '{') {
|
if (len < 32 || line[0] != '{') {
|
||||||
if (!m_quiet) {
|
if (!m_quiet) {
|
||||||
|
@ -634,7 +634,7 @@ void Client::reconnect()
|
||||||
|
|
||||||
void Client::setState(SocketState state)
|
void Client::setState(SocketState state)
|
||||||
{
|
{
|
||||||
LOG_DEBUG("[%s:%u] state: %d", m_url.host(), m_url.port(), state);
|
LOG_DEBUG("[%s] state: %d", m_pool.url(), state);
|
||||||
|
|
||||||
if (m_state == state) {
|
if (m_state == state) {
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -63,7 +63,7 @@ public:
|
||||||
void connect();
|
void connect();
|
||||||
void connect(const Pool &pool);
|
void connect(const Pool &pool);
|
||||||
void deleteLater();
|
void deleteLater();
|
||||||
void setUrl(const Pool &pool);
|
void setPool(const Pool &pool);
|
||||||
void tick(uint64_t now);
|
void tick(uint64_t now);
|
||||||
|
|
||||||
inline bool isReady() const { return m_state == ConnectedState && m_failures == 0; }
|
inline bool isReady() const { return m_state == ConnectedState && m_failures == 0; }
|
||||||
|
|
|
@ -76,7 +76,6 @@ Pool::Pool(const char *url) :
|
||||||
m_keepAlive(0),
|
m_keepAlive(0),
|
||||||
m_port(kDefaultPort),
|
m_port(kDefaultPort),
|
||||||
m_algo(xmrig::CRYPTONIGHT),
|
m_algo(xmrig::CRYPTONIGHT),
|
||||||
m_url(url),
|
|
||||||
m_variant(xmrig::VARIANT_AUTO)
|
m_variant(xmrig::VARIANT_AUTO)
|
||||||
{
|
{
|
||||||
parse(url);
|
parse(url);
|
||||||
|
@ -150,6 +149,7 @@ bool Pool::parse(const char *url)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
m_url = url;
|
||||||
if (base[0] == '[') {
|
if (base[0] == '[') {
|
||||||
return parseIPv6(base);
|
return parseIPv6(base);
|
||||||
}
|
}
|
||||||
|
@ -157,7 +157,7 @@ bool Pool::parse(const char *url)
|
||||||
const char *port = strchr(base, ':');
|
const char *port = strchr(base, ':');
|
||||||
if (!port) {
|
if (!port) {
|
||||||
m_host = base;
|
m_host = base;
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
const size_t size = port++ - base + 1;
|
const size_t size = port++ - base + 1;
|
||||||
|
|
|
@ -156,7 +156,7 @@ void FailoverStrategy::onResultAccepted(Client *client, const SubmitResult &resu
|
||||||
void FailoverStrategy::add(const Pool &pool)
|
void FailoverStrategy::add(const Pool &pool)
|
||||||
{
|
{
|
||||||
Client *client = new Client((int) m_pools.size(), Platform::userAgent(), this);
|
Client *client = new Client((int) m_pools.size(), Platform::userAgent(), this);
|
||||||
client->setUrl(pool);
|
client->setPool(pool);
|
||||||
client->setRetryPause(m_retryPause * 1000);
|
client->setRetryPause(m_retryPause * 1000);
|
||||||
client->setQuiet(m_quiet);
|
client->setQuiet(m_quiet);
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ SinglePoolStrategy::SinglePoolStrategy(const Pool &pool, int retryPause, IStrate
|
||||||
m_listener(listener)
|
m_listener(listener)
|
||||||
{
|
{
|
||||||
m_client = new Client(0, Platform::userAgent(), this);
|
m_client = new Client(0, Platform::userAgent(), this);
|
||||||
m_client->setUrl(pool);
|
m_client->setPool(pool);
|
||||||
m_client->setRetryPause(retryPause * 1000);
|
m_client->setRetryPause(retryPause * 1000);
|
||||||
m_client->setQuiet(quiet);
|
m_client->setQuiet(quiet);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue