|
|
@ -92,8 +92,6 @@ const char * const BITCOIN_CONF_FILENAME = "bitcoin.conf";
|
|
|
|
const char * const BITCOIN_PID_FILENAME = "bitcoind.pid";
|
|
|
|
const char * const BITCOIN_PID_FILENAME = "bitcoind.pid";
|
|
|
|
|
|
|
|
|
|
|
|
ArgsManager gArgs;
|
|
|
|
ArgsManager gArgs;
|
|
|
|
static std::map<std::string, std::vector<std::string> > _mapMultiArgs;
|
|
|
|
|
|
|
|
const std::map<std::string, std::vector<std::string> >& mapMultiArgs = _mapMultiArgs;
|
|
|
|
|
|
|
|
bool fPrintToConsole = false;
|
|
|
|
bool fPrintToConsole = false;
|
|
|
|
bool fPrintToDebugLog = true;
|
|
|
|
bool fPrintToDebugLog = true;
|
|
|
|
|
|
|
|
|
|
|
@ -386,7 +384,7 @@ void ArgsManager::ParseParameters(int argc, const char* const argv[])
|
|
|
|
{
|
|
|
|
{
|
|
|
|
LOCK(cs_args);
|
|
|
|
LOCK(cs_args);
|
|
|
|
mapArgs.clear();
|
|
|
|
mapArgs.clear();
|
|
|
|
_mapMultiArgs.clear();
|
|
|
|
mapMultiArgs.clear();
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = 1; i < argc; i++)
|
|
|
|
for (int i = 1; i < argc; i++)
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -414,7 +412,7 @@ void ArgsManager::ParseParameters(int argc, const char* const argv[])
|
|
|
|
InterpretNegativeSetting(str, strValue);
|
|
|
|
InterpretNegativeSetting(str, strValue);
|
|
|
|
|
|
|
|
|
|
|
|
mapArgs[str] = strValue;
|
|
|
|
mapArgs[str] = strValue;
|
|
|
|
_mapMultiArgs[str].push_back(strValue);
|
|
|
|
mapMultiArgs[str].push_back(strValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -459,7 +457,7 @@ bool ArgsManager::SoftSetArg(const std::string& strArg, const std::string& strVa
|
|
|
|
LOCK(cs_args);
|
|
|
|
LOCK(cs_args);
|
|
|
|
if (mapArgs.count(strArg))
|
|
|
|
if (mapArgs.count(strArg))
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
mapArgs[strArg] = strValue;
|
|
|
|
ForceSetArg(strArg, strValue);
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -475,6 +473,7 @@ void ArgsManager::ForceSetArg(const std::string& strArg, const std::string& strV
|
|
|
|
{
|
|
|
|
{
|
|
|
|
LOCK(cs_args);
|
|
|
|
LOCK(cs_args);
|
|
|
|
mapArgs[strArg] = strValue;
|
|
|
|
mapArgs[strArg] = strValue;
|
|
|
|
|
|
|
|
mapMultiArgs[strArg].push_back(strValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -612,7 +611,7 @@ void ArgsManager::ReadConfigFile(const std::string& confPath)
|
|
|
|
InterpretNegativeSetting(strKey, strValue);
|
|
|
|
InterpretNegativeSetting(strKey, strValue);
|
|
|
|
if (mapArgs.count(strKey) == 0)
|
|
|
|
if (mapArgs.count(strKey) == 0)
|
|
|
|
mapArgs[strKey] = strValue;
|
|
|
|
mapArgs[strKey] = strValue;
|
|
|
|
_mapMultiArgs[strKey].push_back(strValue);
|
|
|
|
mapMultiArgs[strKey].push_back(strValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// If datadir is changed in .conf file:
|
|
|
|
// If datadir is changed in .conf file:
|
|
|
|