2018-11-20 00:51:03 +00:00
|
|
|
#ifndef LLARP_DEFAULTS_HPP
|
|
|
|
#define LLARP_DEFAULTS_HPP
|
2018-08-09 13:55:51 +00:00
|
|
|
|
|
|
|
#ifndef DEFAULT_RESOLVER_US
|
2018-11-11 13:30:54 +00:00
|
|
|
#define DEFAULT_RESOLVER_US "1.1.1.1"
|
2018-08-09 13:55:51 +00:00
|
|
|
#endif
|
|
|
|
#ifndef DEFAULT_RESOLVER_EU
|
2018-12-14 07:35:21 +00:00
|
|
|
#define DEFAULT_RESOLVER_EU "1.1.1.1"
|
2018-08-09 13:55:51 +00:00
|
|
|
#endif
|
|
|
|
#ifndef DEFAULT_RESOLVER_AU
|
2018-12-14 07:35:21 +00:00
|
|
|
#define DEFAULT_RESOLVER_AU "1.1.1.1"
|
2018-08-09 13:55:51 +00:00
|
|
|
#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
|
|
|
|
|
2018-11-20 00:51:03 +00:00
|
|
|
#endif
|