62 lines
1.7 KiB
C++
62 lines
1.7 KiB
C++
/* XMRig
|
|
* Copyright 2018-2020 SChernykh <https://github.com/SChernykh>
|
|
* Copyright 2016-2020 XMRig <https://github.com/xmrig>, <support@xmrig.com>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "base/net/stratum/NullClient.h"
|
|
#include "3rdparty/rapidjson/document.h"
|
|
#include "base/kernel/interfaces/IClientListener.h"
|
|
|
|
|
|
xmrig::NullClient::NullClient(IClientListener* listener) :
|
|
m_listener(listener)
|
|
{
|
|
m_job.setAlgorithm(Algorithm::RX_0);
|
|
|
|
std::vector<char> blob(112 * 2 + 1, '0');
|
|
|
|
blob.back() = '\0';
|
|
m_job.setBlob(blob.data());
|
|
|
|
blob[Job::kMaxSeedSize * 2] = '\0';
|
|
m_job.setSeedHash(blob.data());
|
|
|
|
m_job.setDiff(uint64_t(-1));
|
|
m_job.setHeight(1);
|
|
|
|
m_job.setId("00000000");
|
|
}
|
|
|
|
|
|
void xmrig::NullClient::connect()
|
|
{
|
|
m_listener->onLoginSuccess(this);
|
|
|
|
rapidjson::Value params;
|
|
m_listener->onJobReceived(this, m_job, params);
|
|
}
|
|
|
|
|
|
void xmrig::NullClient::setPool(const Pool& pool)
|
|
{
|
|
m_pool = pool;
|
|
|
|
if (!m_pool.algorithm().isValid()) {
|
|
m_pool.setAlgo(Algorithm::RX_0);
|
|
}
|
|
|
|
m_job.setAlgorithm(m_pool.algorithm().id());
|
|
}
|