X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fprotocol.h;h=e639127355a246f1039ecd16e78d6c448c88a6a6;hb=6b8de05d0a6696dff4b7dccec5b74889f3cdc486;hp=613c47f042a6c66cb119d7ef8b071bc35d5207a2;hpb=01a196e08db49d83cf6c5abd8a799c56dcfef503;p=novacoin.git diff --git a/src/protocol.h b/src/protocol.h index 613c47f..e639127 100644 --- a/src/protocol.h +++ b/src/protocol.h @@ -22,15 +22,15 @@ static inline unsigned short GetDefaultPort(const bool testnet = fTestNet) return testnet ? 18333 : 8333; } -// -// Message header -// (4) message start -// (12) command -// (4) size -// (4) checksum extern unsigned char pchMessageStart[4]; +/** Message header. + * (4) message start. + * (12) command. + * (4) size. + * (4) checksum. + */ class CMessageHeader { public: @@ -57,11 +57,13 @@ class CMessageHeader unsigned int nChecksum; }; +/** nServices flags */ enum { NODE_NETWORK = (1 << 0), }; +/** A CService with information about it as peer */ class CAddress : public CService { public: @@ -97,6 +99,7 @@ class CAddress : public CService int64 nLastTry; }; +/** inv message data */ class CInv { public: