mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
31 lines
628 B
C++
31 lines
628 B
C++
#ifndef LLARP_DEFAULTS_HPP
|
|
#define LLARP_DEFAULTS_HPP
|
|
|
|
#ifndef DEFAULT_RESOLVER_US
|
|
#define DEFAULT_RESOLVER_US "1.1.1.1"
|
|
#endif
|
|
#ifndef DEFAULT_RESOLVER_EU
|
|
#define DEFAULT_RESOLVER_EU "1.1.1.1"
|
|
#endif
|
|
#ifndef DEFAULT_RESOLVER_AU
|
|
#define DEFAULT_RESOLVER_AU "1.1.1.1"
|
|
#endif
|
|
|
|
#ifdef DEBIAN
|
|
#ifndef DEFAULT_LOKINET_USER
|
|
#define DEFAULT_LOKINET_USER "debian-lokinet"
|
|
#endif
|
|
#ifndef DEFAULT_LOKINET_GROUP
|
|
#define DEFAULT_LOKINET_GROUP "debian-lokinet"
|
|
#endif
|
|
#else
|
|
#ifndef DEFAULT_LOKINET_USER
|
|
#define DEFAULT_LOKINET_USER "lokinet"
|
|
#endif
|
|
#ifndef DEFAULT_LOKINET_GROUP
|
|
#define DEFAULT_LOKINET_GROUP "lokinet"
|
|
#endif
|
|
#endif
|
|
|
|
#endif
|