version.h: separate client, net sections. Move more constants to this file.
[novacoin.git] / src / version.h
1 // Copyright (c) 2012 The Bitcoin developers
2 // Distributed under the MIT/X11 software license, see the accompanying
3 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
4 #ifndef BITCOIN_VERSION_H
5 #define BITCOIN_VERSION_H
6
7 #include <string>
8
9 //
10 // client versioning
11 //
12
13 static const int CLIENT_VERSION_MAJOR       =  0;
14 static const int CLIENT_VERSION_MINOR       =  6;
15 static const int CLIENT_VERSION_REVISION    =  0;
16 static const int CLIENT_VERSION_BUILD       = 99;
17
18 static const int CLIENT_VERSION =
19                            1000000 * CLIENT_VERSION_MAJOR
20                          +   10000 * CLIENT_VERSION_MINOR 
21                          +     100 * CLIENT_VERSION_REVISION
22                          +       1 * CLIENT_VERSION_BUILD;
23
24 extern const std::string CLIENT_NAME;
25 extern const std::string CLIENT_BUILD;
26 extern const std::string CLIENT_DATE;
27
28 //
29 // network protocol versioning
30 //
31
32 static const int PROTOCOL_VERSION = 60000;
33
34 // BIP 0031, pong message, is enabled for all versions AFTER this one
35 static const int BIP0031_VERSION = 60000;
36
37 #endif