1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2014 The Bitcoin Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
8 #include "chainparams.h"
10 #include "utilstrencodings.h"
13 # include <arpa/inet.h>
16 static const char* ppszTypeName[] =
24 CMessageHeader::CMessageHeader()
26 memcpy(pchMessageStart, Params().MessageStart(), MESSAGE_START_SIZE);
27 memset(pchCommand, 0, sizeof(pchCommand));
32 CMessageHeader::CMessageHeader(const char* pszCommand, unsigned int nMessageSizeIn)
34 memcpy(pchMessageStart, Params().MessageStart(), MESSAGE_START_SIZE);
35 memset(pchCommand, 0, sizeof(pchCommand));
36 strncpy(pchCommand, pszCommand, COMMAND_SIZE);
37 nMessageSize = nMessageSizeIn;
41 std::string CMessageHeader::GetCommand() const
43 return std::string(pchCommand, pchCommand + strnlen(pchCommand, COMMAND_SIZE));
46 bool CMessageHeader::IsValid() const
49 if (memcmp(pchMessageStart, Params().MessageStart(), MESSAGE_START_SIZE) != 0)
52 // Check the command string for errors
53 for (const char* p1 = pchCommand; p1 < pchCommand + COMMAND_SIZE; p1++)
57 // Must be all zeros after the first zero
58 for (; p1 < pchCommand + COMMAND_SIZE; p1++)
62 else if (*p1 < ' ' || *p1 > 0x7E)
67 if (nMessageSize > MAX_SIZE)
69 LogPrintf("CMessageHeader::IsValid(): (%s, %u bytes) nMessageSize > MAX_SIZE\n", GetCommand(), nMessageSize);
78 CAddress::CAddress() : CService()
83 CAddress::CAddress(CService ipIn, uint64_t nServicesIn) : CService(ipIn)
86 nServices = nServicesIn;
91 nServices = NODE_NETWORK;
102 CInv::CInv(int typeIn, const uint256& hashIn)
108 CInv::CInv(const std::string& strType, const uint256& hashIn)
111 for (i = 1; i < ARRAYLEN(ppszTypeName); i++)
113 if (strType == ppszTypeName[i])
119 if (i == ARRAYLEN(ppszTypeName))
120 throw std::out_of_range(strprintf("CInv::CInv(string, uint256): unknown type '%s'", strType));
124 bool operator<(const CInv& a, const CInv& b)
126 return (a.type < b.type || (a.type == b.type && a.hash < b.hash));
129 bool CInv::IsKnownType() const
131 return (type >= 1 && type < (int)ARRAYLEN(ppszTypeName));
134 const char* CInv::GetCommand() const
137 throw std::out_of_range(strprintf("CInv::GetCommand(): type=%d unknown type", type));
138 return ppszTypeName[type];
141 std::string CInv::ToString() const
143 return strprintf("%s %s", GetCommand(), hash.ToString());