mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-24 14:20:44 -04:00
fixed initialization of RsConfigOptions
This commit is contained in:
parent
9bbd6d49df
commit
bd0e4d7fba
1 changed files with 6 additions and 7 deletions
|
@ -117,14 +117,13 @@ RsAccounts* rsAccounts = nullptr;
|
||||||
|
|
||||||
RsConfigOptions::RsConfigOptions()
|
RsConfigOptions::RsConfigOptions()
|
||||||
: jsonApiPort(JsonApiServer::DEFAULT_PORT),
|
: jsonApiPort(JsonApiServer::DEFAULT_PORT),
|
||||||
jsonApiBindAddress("127.0.0.1")
|
jsonApiBindAddress("127.0.0.1"),
|
||||||
|
autoLogin(false),
|
||||||
|
forcedPort(0),
|
||||||
|
udpListenerOnly(false),
|
||||||
|
outStderr(false),
|
||||||
|
debugLevel(5)
|
||||||
{
|
{
|
||||||
autoLogin = false;
|
|
||||||
forcedPort=0;
|
|
||||||
udpListenerOnly=false;
|
|
||||||
|
|
||||||
outStderr=false;
|
|
||||||
debugLevel=5;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue