mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-02-02 09:54:29 +00:00
different id names per platform
This commit is contained in:
parent
f199d3bde4
commit
cbac6d7c5e
@ -8,7 +8,13 @@
|
|||||||
// Name of client reported in the 'version' message. Report the same name
|
// Name of client reported in the 'version' message. Report the same name
|
||||||
// for both bitcoind and bitcoin-qt, to make it harder for attackers to
|
// for both bitcoind and bitcoin-qt, to make it harder for attackers to
|
||||||
// target servers or GUI users specifically.
|
// target servers or GUI users specifically.
|
||||||
|
#if defined(__ANDROID__)
|
||||||
|
const std::string CLIENT_NAME("twisterd_android");
|
||||||
|
#elif defined(WIN32)
|
||||||
|
const std::string CLIENT_NAME("twisterd_windows");
|
||||||
|
#else
|
||||||
const std::string CLIENT_NAME("twisterd");
|
const std::string CLIENT_NAME("twisterd");
|
||||||
|
#endif
|
||||||
|
|
||||||
// Client version number
|
// Client version number
|
||||||
#define CLIENT_VERSION_SUFFIX "-beta"
|
#define CLIENT_VERSION_SUFFIX "-beta"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user