blob: 6e676cf411777ea584cc6fa1ec769bc1f8e705d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
#pragma once
#include "xmrstak/misc/environment.hpp"
#include <string>
namespace xmrstak
{
struct params
{
static inline params& inst()
{
auto& env = environment::inst();
if(env.pParams == nullptr)
env.pParams = new params;
return *env.pParams;
}
std::string executablePrefix;
std::string binaryName;
bool useAMD;
bool AMDCache;
bool useNVIDIA;
bool useCPU;
// user selected OpenCL vendor
std::string openCLVendor;
bool poolUseTls = false;
std::string poolURL;
bool userSetPwd = false;
std::string poolPasswd;
bool userSetRigid = false;
std::string poolRigid;
std::string poolUsername;
bool nicehashMode = false;
static constexpr int32_t httpd_port_unset = -1;
static constexpr int32_t httpd_port_disabled = 0;
int32_t httpd_port = httpd_port_unset;
std::string currency;
std::string configFile;
std::string configFilePools;
std::string configFileAMD;
std::string configFileNVIDIA;
std::string configFileCPU;
bool allowUAC = true;
std::string minerArg0;
std::string minerArgs;
// block_version >= 0 enable benchmark
int benchmark_block_version = -1;
params() :
binaryName("xmr-stak"),
executablePrefix(""),
useAMD(true),
AMDCache(true),
useNVIDIA(true),
useCPU(true),
openCLVendor("AMD"),
configFile("config.txt"),
configFilePools("pools.txt"),
configFileAMD("amd.txt"),
configFileCPU("cpu.txt"),
configFileNVIDIA("nvidia.txt")
{}
};
} // namespace xmrstak
|