Fabcoin Core  0.16.2
P2P Digital Currency
Macros | Functions
clientversion.cpp File Reference
#include <clientversion.h>
#include <tinyformat.h>
#include <string>
Include dependency graph for clientversion.cpp:

Go to the source code of this file.

Macros

#define CLIENT_VERSION_SUFFIX   ""
 Client version number. More...
 
#define BUILD_DESC_WITH_SUFFIX(maj, min, rev, build, suffix)   "v" DO_STRINGIZE(maj) "." DO_STRINGIZE(min) "." DO_STRINGIZE(rev) "." DO_STRINGIZE(build) "-" DO_STRINGIZE(suffix)
 The following part of the code determines the CLIENT_BUILD variable. More...
 
#define BUILD_DESC_FROM_COMMIT(maj, min, rev, build, commit)   "v" DO_STRINGIZE(maj) "." DO_STRINGIZE(min) "." DO_STRINGIZE(rev) "." DO_STRINGIZE(build) "-g" commit
 
#define BUILD_DESC_FROM_UNKNOWN(maj, min, rev, build)   "v" DO_STRINGIZE(maj) "." DO_STRINGIZE(min) "." DO_STRINGIZE(rev) "." DO_STRINGIZE(build) "-unk"
 
#define BUILD_DESC   BUILD_DESC_FROM_UNKNOWN(CLIENT_VERSION_MAJOR, CLIENT_VERSION_MINOR, CLIENT_VERSION_REVISION, CLIENT_VERSION_BUILD)
 

Functions

const std::string CLIENT_NAME ("Satoshi")
 Name of client reported in the 'version' message. More...
 
const std::string CLIENT_BUILD (BUILD_DESC CLIENT_VERSION_SUFFIX)
 
std::string FormatFullVersion ()
 
std::string FormatSubVersion (const std::string &name, int nClientVersion, const std::vector< std::string > &comments)
 Format the subversion field according to BIP 14 spec (https://github.com/fabcoin/bips/blob/master/bip-0014.mediawiki) More...
 

Macro Definition Documentation

Definition at line 66 of file clientversion.cpp.

#define BUILD_DESC_FROM_COMMIT (   maj,
  min,
  rev,
  build,
  commit 
)    "v" DO_STRINGIZE(maj) "." DO_STRINGIZE(min) "." DO_STRINGIZE(rev) "." DO_STRINGIZE(build) "-g" commit

Definition at line 54 of file clientversion.cpp.

#define BUILD_DESC_FROM_UNKNOWN (   maj,
  min,
  rev,
  build 
)    "v" DO_STRINGIZE(maj) "." DO_STRINGIZE(min) "." DO_STRINGIZE(rev) "." DO_STRINGIZE(build) "-unk"

Definition at line 57 of file clientversion.cpp.

#define BUILD_DESC_WITH_SUFFIX (   maj,
  min,
  rev,
  build,
  suffix 
)    "v" DO_STRINGIZE(maj) "." DO_STRINGIZE(min) "." DO_STRINGIZE(rev) "." DO_STRINGIZE(build) "-" DO_STRINGIZE(suffix)

The following part of the code determines the CLIENT_BUILD variable.

Several mechanisms are used for this:

  • first, if HAVE_BUILD_INFO is defined, include build.h, a file that is generated by the build environment, possibly containing the output of git-describe in a macro called BUILD_DESC
  • secondly, if this is an exported version of the code, GIT_ARCHIVE will be defined (automatically using the export-subst git attribute), and GIT_COMMIT will contain the commit id.
  • then, three options exist for determining CLIENT_BUILD:
    • if BUILD_DESC is defined, use that literally (output of git-describe)
    • if not, but GIT_COMMIT is defined, use v[maj].[min].[rev].[build]-g[commit]
    • otherwise, use v[maj].[min].[rev].[build]-unk finally CLIENT_VERSION_SUFFIX is addedFirst, include build.h if requested git will put "#define GIT_ARCHIVE 1" on the next line inside archives.
      Format
      n::define GIT_ARCHIVE 1

Definition at line 51 of file clientversion.cpp.

#define CLIENT_VERSION_SUFFIX   ""

Client version number.

Definition at line 21 of file clientversion.cpp.

Function Documentation

const std::string CLIENT_BUILD ( BUILD_DESC  CLIENT_VERSION_SUFFIX)

Here is the caller graph for this function:

const std::string CLIENT_NAME ( "Satoshi"  )

Name of client reported in the 'version' message.

Report the same name for both fabcoind and fabcoin-core, to make it harder for attackers to target servers or GUI users specifically.

std::string FormatFullVersion ( )

Definition at line 80 of file clientversion.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

std::string FormatSubVersion ( const std::string &  name,
int  nClientVersion,
const std::vector< std::string > &  comments 
)

Format the subversion field according to BIP 14 spec (https://github.com/fabcoin/bips/blob/master/bip-0014.mediawiki)

Definition at line 88 of file clientversion.cpp.

Here is the caller graph for this function: