7 #error This header can only be compiled as C++.
10 #ifndef BITCOIN_PROTOCOL_H
11 #define BITCOIN_PROTOCOL_H
45 CMessageHeader(
const MessageStartChars& pchMessageStartIn,
const char* pszCommand,
unsigned int nMessageSizeIn);
78 extern const char*
ADDR;
95 extern const char*
INV;
120 extern const char*
TX;
130 extern const char*
BLOCK;
146 extern const char*
PING;
152 extern const char*
PONG;
372 int nVersion = s.GetVersion();
387 uint64_t services_tmp;
388 SER_WRITE(obj, services_tmp = obj.nServices);
390 SER_READ(obj, obj.nServices = static_cast<ServiceFlags>(services_tmp));
465 #endif // BITCOIN_PROTOCOL_H
const char * GETCFILTERS
getcfilters requests compact filters for a range of blocks.
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.
const char * SENDADDRV2
The sendaddrv2 message signals support for receiving ADDRV2 messages (BIP155).
ServiceFlags
nServices flags
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 ...
bool IsMsgWitnessBlk() const
const char * SENDCMPCT
Contains a 1-byte bool and 8-byte LE version number.
const char * CFHEADERS
cfheaders is a response to a getcfheaders request containing a filter header and a vector of filter h...
GenTxid ToGenTxid(const CInv &inv)
Convert a TX/WITNESS_TX/WTX CInv to a GenTxid.
SERIALIZE_METHODS(CAddress, obj)
const uint32_t MSG_WITNESS_FLAG
getdata message type flags
bool IsMsgCmpctBlk() const
const char * CFILTER
cfilter is a response to a getcfilters request containing a single compact filter.
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 * WTXIDRELAY
Indicates that a node prefers to relay transactions via wtxid, rather than txid.
const char * HEADERS
The headers message sends one or more block headers to a node which previously requested certain head...
static Wrapper< Formatter, T & > Using(T &&t)
Cause serialization/deserialization of an object to be done using a specified formatter class...
const char * GETCFCHECKPT
getcfcheckpt requests evenly spaced compact filter headers, enabling parallelized download and valida...
const char * INV
The inv message (inventory message) transmits one or more inventories of objects known to the transmi...
static constexpr int ADDRV2_FORMAT
A flag that is ORed into the protocol version to designate that addresses should be serialized in (un...
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...
static bool HasAllDesirableServiceFlags(ServiceFlags services)
A shortcut for (services & GetDesirableServiceFlags(services)) == GetDesirableServiceFlags(services)...
Bitcoin protocol message types.
const char * ADDRV2
The addrv2 message relays connection information for peers on the network just like the addr message...
static const int INIT_PROTO_VERSION
initial proto version, to be increased after version/verack negotiation
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 * GETCFHEADERS
getcfheaders requests a compact filter header and the filter hashes for a range of blocks...
static bool MayHaveUsefulAddressDB(ServiceFlags services)
Checks if a peer with the given service flags may be capable of having a robust address-storage DB...
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"...
static constexpr uint32_t TIME_INIT
const char * VERSION
The version message provides information about the transmitting node to the receiving node at the beg...
std::vector< std::string > serviceFlagsToStr(uint64_t flags)
Convert service flags (a bitmask of NODE_*) to human readable strings.
CAddress(CService ipIn, ServiceFlags nServicesIn)
const char * GETDATA
The getdata message requests one or more data objects from another node.
GetDataMsg
getdata / inv message types.
const char * CFCHECKPT
cfcheckpt is a response to a getcfcheckpt request containing a vector of evenly spaced filter headers...
#define SER_READ(obj, code)
bool IsMsgFilteredBlk() const
const char * TX
The tx message transmits a single transaction.
#define SER_WRITE(obj, code)
std::string ToString() const
std::string GetCommand() const
CAddress(CService ipIn, ServiceFlags nServicesIn, uint32_t nTimeIn)
friend bool operator<(const CInv &a, const CInv &b)
A generic txid reference (txid or wtxid).
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.
SERIALIZE_METHODS(CInv, obj)