1 // Copyright (c) 2012 The Bitcoin developers
2 // Distributed under the MIT/X11 software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 #ifndef BITCOIN_VERSION_H
5 #define BITCOIN_VERSION_H
7 #include "clientversion.h"
15 static const int CLIENT_VERSION =
16 1000000 * CLIENT_VERSION_MAJOR
17 + 10000 * CLIENT_VERSION_MINOR
18 + 100 * CLIENT_VERSION_REVISION
19 + 1 * CLIENT_VERSION_BUILD;
21 extern const std::string CLIENT_NAME;
22 extern const std::string CLIENT_BUILD;
23 extern const std::string CLIENT_DATE;
26 // network protocol versioning
29 static const int PROTOCOL_VERSION = 70002;
31 // initial proto version, to be increased after version/verack negotiation
32 static const int INIT_PROTO_VERSION = 209;
34 // disconnect from peers older than this proto version
35 static const int MIN_PEER_PROTO_VERSION = 209;
37 // nTime field added to CAddress, starting with this version;
38 // if possible, avoid requesting addresses nodes older than this
39 static const int CADDR_TIME_VERSION = 31402;
41 // only request blocks from nodes outside this range of versions
42 static const int NOBLKS_VERSION_START = 32000;
43 static const int NOBLKS_VERSION_END = 32400;
45 // BIP 0031, pong message, is enabled for all versions AFTER this one
46 static const int BIP0031_VERSION = 60000;
48 // "mempool" command, enhanced "getdata" behavior starts with this version
49 static const int MEMPOOL_GD_VERSION = 60002;