13 # include <arpa/inet.h> 20 const char *
INV=
"inv";
51 const static std::string allNetMessageTypes[] = {
82 const static std::vector<std::string> allNetMessageTypesVec(allNetMessageTypes, allNetMessageTypes+
ARRAYLEN(allNetMessageTypes));
86 memcpy(pchMessageStart, pchMessageStartIn, MESSAGE_START_SIZE);
87 memset(pchCommand, 0,
sizeof(pchCommand));
89 memset(pchChecksum, 0, CHECKSUM_SIZE);
94 memcpy(pchMessageStart, pchMessageStartIn, MESSAGE_START_SIZE);
95 memset(pchCommand, 0,
sizeof(pchCommand));
96 strncpy(pchCommand, pszCommand, COMMAND_SIZE);
97 nMessageSize = nMessageSizeIn;
98 memset(pchChecksum, 0, CHECKSUM_SIZE);
103 return std::string(pchCommand, pchCommand +
strnlen(pchCommand, COMMAND_SIZE));
109 if (memcmp(pchMessageStart, pchMessageStartIn, MESSAGE_START_SIZE) != 0)
113 for (
const char* p1 = pchCommand; p1 < pchCommand + COMMAND_SIZE; p1++)
118 for (; p1 < pchCommand + COMMAND_SIZE; p1++)
122 else if (*p1 < ' ' || *p1 > 0x7E)
127 if (nMessageSize > MAX_SIZE)
129 LogPrintf(
"CMessageHeader::IsValid(): (%s, %u bytes) nMessageSize > MAX_SIZE\n", GetCommand(), nMessageSize);
172 cmd.append(
"witness-");
181 throw std::out_of_range(
strprintf(
"CInv::GetCommand(): type=%d unknown type",
type));
189 }
catch(
const std::out_of_range &) {
196 return allNetMessageTypesVec;
const char * PING
The ping message is sent periodically to help confirm that the receiving peer is still connected...
const char * FILTERLOAD
The filterload message tells the receiving peer to filter all relayed transactions and requested merk...
const char * MERKLEBLOCK
The merkleblock message is a reply to a getdata message which requested a block using the inventory t...
const char * BLOCKTXN
Contains a BlockTransactions.
ServiceFlags
nServices flags
const char * ASSETNOTFOUND
The asstnotfound message is a reply to a getassetdata message which requested an object the receiving...
std::string GetCommand() const
std::string ToString() const
const char * GETADDR
The getaddr message requests an addr message from the receiving node, preferably one with lots of IP ...
const char * GETASSETDATA
Contains a AssetDataRequest.
const char * SENDCMPCT
Contains a 1-byte bool and 8-byte LE version number.
const uint32_t MSG_WITNESS_FLAG
getdata message type flags
const uint32_t MSG_TYPE_MASK
const char * PONG
The pong message replies to a ping message, proving to the pinging node that the ponging node is stil...
const char * HEADERS
The headers message sends one or more block headers to a node which previously requested certain head...
const char * INV
The inv message (inventory message) transmits one or more inventories of objects known to the transmi...
const char * GETHEADERS
The getheaders message requests a headers message that provides block headers starting from a particu...
Raven protocol message types.
A combination of a network address (CNetAddr) and a (TCP) port.
friend bool operator<(const CInvAsset &a, const CInvAsset &b)
const char * SENDHEADERS
Indicates that a node prefers to receive new block announcements via a "headers" message rather than ...
const char * MEMPOOL
The mempool message requests the TXIDs of transactions that the receiving node has verified as valid ...
const std::vector< std::string > & getAllNetMessageTypes()
const char * ADDR
The addr (IP address) message relays connection information for peers on the network.
const char * FILTERCLEAR
The filterclear message tells the receiving peer to remove a previously-set bloom filter...
std::string ToString() const
const char * NOTFOUND
The notfound message is a reply to a getdata message which requested an object the receiving node doe...
const char * BLOCK
The block message transmits a single serialized block.
const char * FEEFILTER
The feefilter message tells the receiving peer not to inv us any txs which do not meet the specified ...
const char * REJECT
The reject message informs the receiving node that one of its previous messages has been rejected...
const char * GETBLOCKS
The getblocks message requests an inv message that provides block header hashes starting from a parti...
const char * VERACK
The verack message acknowledges a previously-received version message, informing the connecting node ...
const char * CMPCTBLOCK
Contains a CBlockHeaderAndShortTxIDs object - providing a header and list of "short txids"...
const char * VERSION
The version message provides information about the transmitting node to the receiving node at the beg...
void * memcpy(void *a, const void *b, size_t c)
size_t strnlen(const char *start, size_t max_len)
const char * GETDATA
The getdata message requests one or more data objects from another node.
const char * ASSETDATA
Contains a AssetData Sent in response to a "getassetdata" message.
const char * TX
The tx message transmits a single transaction.
friend bool operator<(const CInv &a, const CInv &b)
const char * FILTERADD
The filteradd message tells the receiving peer to add a single element to a previously-set bloom filt...
const char * GETBLOCKTXN
Contains a BlockTransactionsRequest Peer should respond with "blocktxn" message.
std::string ToString() const