]> Git Repo - VerusCoin.git/blob - src/version.h
Merge pull request #4497
[VerusCoin.git] / src / version.h
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
6
7 #include "clientversion.h"
8
9 #include <string>
10
11 //
12 // client versioning
13 //
14
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;
20
21 extern const std::string CLIENT_NAME;
22 extern const std::string CLIENT_BUILD;
23 extern const std::string CLIENT_DATE;
24
25 //
26 // network protocol versioning
27 //
28
29 static const int PROTOCOL_VERSION = 70002;
30
31 // initial proto version, to be increased after version/verack negotiation
32 static const int INIT_PROTO_VERSION = 209;
33
34 // disconnect from peers older than this proto version
35 static const int MIN_PEER_PROTO_VERSION = 209;
36
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;
40
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;
44
45 // BIP 0031, pong message, is enabled for all versions AFTER this one
46 static const int BIP0031_VERSION = 60000;
47
48 // "mempool" command, enhanced "getdata" behavior starts with this version
49 static const int MEMPOOL_GD_VERSION = 60002;
50
51 #endif
This page took 0.040135 seconds and 4 git commands to generate.