mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
start up if i2p.conf is not presented
This commit is contained in:
@@ -71,7 +71,11 @@ namespace i2p
|
||||
|
||||
datadir = i2p::fs::GetDataDir();
|
||||
if (config == "")
|
||||
config = i2p::fs::DataDirPath("i2p.conf");
|
||||
{
|
||||
config = i2p::fs::DataDirPath("i2p.conf");
|
||||
// use i2p.cong only if exists
|
||||
if (!i2p::fs::Exists (config)) config = ""; /* reset */
|
||||
}
|
||||
if (tunconf == "")
|
||||
tunconf = i2p::fs::DataDirPath("tunnels.cfg");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user