Browse Source

different id names per platform

miguelfreitas
Miguel Freitas 10 years ago
parent
commit
cbac6d7c5e
  1. 6
      src/version.cpp

6
src/version.cpp

@ -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…
Cancel
Save