7 #error This header can only be compiled as C++. 10 #ifndef BITCOIN_PROTOCOL_H 11 #define BITCOIN_PROTOCOL_H 48 template <
typename Stream,
typename Operation>
86 extern const char *
ADDR;
92 extern const char *
INV;
122 extern const char *
TX;
134 extern const char *
BLOCK;
153 extern const char *
PING;
160 extern const char *
PONG;
201 extern const char *
REJECT;
315 static inline bool HasAllDesirableServiceFlags(
ServiceFlags services) {
323 static inline bool MayHaveUsefulAddressDB(
ServiceFlags services) {
338 template <
typename Stream,
typename Operation>
341 if (ser_action.ForRead())
343 int nVersion = s.GetVersion();
347 (nVersion >= CADDR_TIME_VERSION && !(s.GetType() &
SER_GETHASH)))
393 template <
typename Stream,
typename Operation>
411 #endif // BITCOIN_PROTOCOL_H 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
std::string GetCommand() const
std::string ToString() const
const std::vector< std::string > & getAllNetMessageTypes()
const char * GETADDR
The getaddr message requests an addr message from the receiving node, preferably one with lots of IP ...
const char * SENDCMPCT
Contains a 1-byte bool and 8-byte LE version number.
void SerializationOp(Stream &s, Operation ser_action)
GetDataMsg
getdata / inv message types.
const uint32_t MSG_WITNESS_FLAG
getdata message type flags
const uint32_t MSG_TYPE_MASK
#define READWRITEAS(type, obj)
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...
ServiceFlags GetDesirableServiceFlags(ServiceFlags services)
Gets the set of service flags which are "desirable" for a given peer.
const char * GETHEADERS
The getheaders message requests a headers message that provides block headers starting from a particu...
Bitcoin protocol message types.
A combination of a network address (CNetAddr) and a (TCP) port.
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 ...
A CService with information about it as peer.
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...
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...
void SetServiceFlagsIBDCache(bool status)
Set the current IBD status in order to figure out the desirable service flags.
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...
const char * GETDATA
The getdata message requests one or more data objects from another node.
void SerializationOp(Stream &s, Operation ser_action)
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.