mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
59 lines
1.0 KiB
C++
59 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include <llarp/util/fs.hpp>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#ifndef _WIN32
|
|
#include <unistd.h>
|
|
#include <pwd.h>
|
|
#endif
|
|
|
|
namespace llarp
|
|
{
|
|
constexpr auto our_rc_filename = "self.signed";
|
|
constexpr auto our_identity_filename = "identity.key";
|
|
constexpr auto our_enc_key_filename = "encryption.key";
|
|
constexpr auto our_transport_key_filename = "transport.key";
|
|
|
|
constexpr auto nodedb_dirname = "nodedb";
|
|
|
|
inline fs::path
|
|
GetDefaultDataDir()
|
|
{
|
|
#ifdef _WIN32
|
|
return "C:/programdata/lokinet";
|
|
#else
|
|
fs::path datadir{"/var/lib/lokinet"};
|
|
|
|
if (auto uid = ::geteuid())
|
|
{
|
|
if (auto* pw = getpwuid(uid))
|
|
{
|
|
datadir = fs::path{pw->pw_dir} / ".lokinet";
|
|
}
|
|
}
|
|
return datadir;
|
|
#endif
|
|
}
|
|
|
|
inline fs::path
|
|
GetDefaultConfigFilename()
|
|
{
|
|
return "lokinet.ini";
|
|
}
|
|
|
|
inline fs::path
|
|
GetDefaultConfigPath()
|
|
{
|
|
return GetDefaultDataDir() / GetDefaultConfigFilename();
|
|
}
|
|
|
|
inline fs::path
|
|
GetDefaultBootstrap()
|
|
{
|
|
return GetDefaultDataDir() / "bootstrap.signed";
|
|
}
|
|
|
|
} // namespace llarp
|