veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
messages.hpp
1// Copyright (c) 2019-2022 Xenios SEZC
2// https://www.veriblock.org
3// Distributed under the MIT software license, see the accompanying
4// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef BFI_BITCOIN_NET_MESSAGES_HPP
7#define BFI_BITCOIN_NET_MESSAGES_HPP
8
9#include <veriblock/bfi/bitcoin/block.hpp>
10#include <veriblock/bfi/bitcoin/net/net_entities.hpp>
11#include <veriblock/bfi/bitcoin/serialize.hpp>
12
13namespace altintegration {
14
15namespace btc {
16
17struct AddrMsg {
18 std::vector<Address> vAddr;
19
20 ADD_SERIALIZE_METHODS;
21
22 template <typename Stream, typename Operation>
23 inline void SerializationOp(Stream& s, Operation ser_action) {
24 READWRITE(this->vAddr);
25 }
26
27 friend bool operator==(const AddrMsg& a, const AddrMsg& b) {
28 return a.vAddr == b.vAddr;
29 }
30 friend bool operator!=(const AddrMsg& a, const AddrMsg& b) {
31 return !(a == b);
32 }
33};
34
36 bool fAnnounceUsingCMPCTBLOCK;
37 uint64_t nCMPCTBLOCKVersion;
38
39 ADD_SERIALIZE_METHODS;
40
41 template <typename Stream, typename Operation>
42 inline void SerializationOp(Stream& s, Operation ser_action) {
43 READWRITE(this->fAnnounceUsingCMPCTBLOCK);
44 READWRITE(this->nCMPCTBLOCKVersion);
45 }
46
47 friend bool operator==(const SendCmpctMsg& a, const SendCmpctMsg& b) {
48 return a.fAnnounceUsingCMPCTBLOCK == b.fAnnounceUsingCMPCTBLOCK &&
49 a.nCMPCTBLOCKVersion == b.nCMPCTBLOCKVersion;
50 }
51 friend bool operator!=(const SendCmpctMsg& a, const SendCmpctMsg& b) {
52 return !(a == b);
53 }
54};
55
56struct InvMsg {
57 std::vector<Inv> vInv;
58
59 ADD_SERIALIZE_METHODS;
60
61 template <typename Stream, typename Operation>
62 inline void SerializationOp(Stream& s, Operation ser_action) {
63 READWRITE(this->vInv);
64 }
65
66 friend bool operator==(const InvMsg& a, const InvMsg& b) {
67 return a.vInv == b.vInv;
68 }
69 friend bool operator!=(const InvMsg& a, const InvMsg& b) { return !(a == b); }
70};
71
72struct GetDataMsg {
73 std::vector<Inv> vInv;
74
75 ADD_SERIALIZE_METHODS;
76
77 template <typename Stream, typename Operation>
78 inline void SerializationOp(Stream& s, Operation ser_action) {
79 READWRITE(this->vInv);
80 }
81
82 friend bool operator==(const GetDataMsg& a, const GetDataMsg& b) {
83 return a.vInv == b.vInv;
84 }
85 friend bool operator!=(const GetDataMsg& a, const GetDataMsg& b) {
86 return !(a == b);
87 }
88};
89
91 BlockLocator locator;
92 uint256 hashStop;
93
94 ADD_SERIALIZE_METHODS;
95
96 template <typename Stream, typename Operation>
97 inline void SerializationOp(Stream& s, Operation ser_action) {
98 READWRITE(this->locator);
99 READWRITE(this->hashStop);
100 }
101
102 friend bool operator==(const GetBlocksMsg& a, const GetBlocksMsg& b) {
103 return a.locator == b.locator && a.hashStop == b.hashStop;
104 }
105 friend bool operator!=(const GetBlocksMsg& a, const GetBlocksMsg& b) {
106 return !(a == b);
107 }
108};
109
112
113 ADD_SERIALIZE_METHODS;
114
115 template <typename Stream, typename Operation>
116 inline void SerializationOp(Stream& s, Operation ser_action) {
117 READWRITE(this->req);
118 }
119
120 friend bool operator==(const GetBlockTxnMsg& a, const GetBlockTxnMsg& b) {
121 return a.req == b.req;
122 }
123 friend bool operator!=(const GetBlockTxnMsg& a, const GetBlockTxnMsg& b) {
124 return !(a == b);
125 }
126};
127
129 BlockLocator locator;
130 uint256 hashStop;
131
132 ADD_SERIALIZE_METHODS;
133
134 template <typename Stream, typename Operation>
135 inline void SerializationOp(Stream& s, Operation ser_action) {
136 READWRITE(this->locator);
137 READWRITE(this->hashStop);
138 }
139
140 friend bool operator==(const GetHeadersMsg& a, const GetHeadersMsg& b) {
141 return a.locator == b.locator && a.hashStop == b.hashStop;
142 }
143 friend bool operator!=(const GetHeadersMsg& a, const GetHeadersMsg& b) {
144 return !(a == b);
145 }
146};
147
148struct TxMsg {
149 Transaction tx;
150
151 ADD_SERIALIZE_METHODS;
152
153 template <typename Stream, typename Operation>
154 inline void SerializationOp(Stream& s, Operation ser_action) {
155 READWRITE(this->tx);
156 }
157
158 friend bool operator==(const TxMsg& a, const TxMsg& b) {
159 return a.tx == b.tx;
160 }
161 friend bool operator!=(const TxMsg& a, const TxMsg& b) { return !(a == b); }
162};
163
165 BlockHeaderAndShortTxIDs block_header;
166
167 ADD_SERIALIZE_METHODS;
168
169 template <typename Stream, typename Operation>
170 inline void SerializationOp(Stream& s, Operation ser_action) {
171 READWRITE(this->block_header);
172 }
173
174 friend bool operator==(const CmpctBlockMsg& a, const CmpctBlockMsg& b) {
175 return a.block_header == b.block_header;
176 }
177 friend bool operator!=(const CmpctBlockMsg& a, const CmpctBlockMsg& b) {
178 return !(a == b);
179 }
180};
181
184
185 ADD_SERIALIZE_METHODS;
186
187 template <typename Stream, typename Operation>
188 inline void SerializationOp(Stream& s, Operation ser_action) {
189 READWRITE(this->resp);
190 }
191
192 friend bool operator==(const BlockTxnMsg& a, const BlockTxnMsg& b) {
193 return a.resp == b.resp;
194 }
195 friend bool operator!=(const BlockTxnMsg& a, const BlockTxnMsg& b) {
196 return !(a == b);
197 }
198};
199
201 BloomFilter filter;
202
203 ADD_SERIALIZE_METHODS;
204
205 template <typename Stream, typename Operation>
206 inline void SerializationOp(Stream& s, Operation ser_action) {
207 READWRITE(this->filter);
208 }
209
210 friend bool operator==(const FilterLoadMsg& a, const FilterLoadMsg& b) {
211 return a.filter == b.filter;
212 }
213 friend bool operator!=(const FilterLoadMsg& a, const FilterLoadMsg& b) {
214 return !(a == b);
215 }
216};
217
219 std::vector<uint8_t> vData;
220
221 ADD_SERIALIZE_METHODS;
222
223 template <typename Stream, typename Operation>
224 inline void SerializationOp(Stream& s, Operation ser_action) {
225 READWRITE(this->vData);
226 }
227
228 friend bool operator==(const FilterAddMsg& a, const FilterAddMsg& b) {
229 return a.vData == b.vData;
230 }
231 friend bool operator!=(const FilterAddMsg& a, const FilterAddMsg& b) {
232 return !(a == b);
233 }
234};
235
237 Amount newFeeFilter;
238
239 ADD_SERIALIZE_METHODS;
240
241 template <typename Stream, typename Operation>
242 inline void SerializationOp(Stream& s, Operation ser_action) {
243 READWRITE(this->newFeeFilter);
244 }
245
246 friend bool operator==(const FeeFilterMsg& a, const FeeFilterMsg& b) {
247 return a.newFeeFilter == b.newFeeFilter;
248 }
249 friend bool operator!=(const FeeFilterMsg& a, const FeeFilterMsg& b) {
250 return !(a == b);
251 }
252};
253
255 std::vector<Inv> vInv;
256
257 ADD_SERIALIZE_METHODS;
258
259 template <typename Stream, typename Operation>
260 inline void SerializationOp(Stream& s, Operation ser_action) {
261 READWRITE(this->vInv);
262 }
263
264 friend bool operator==(const NotFoundMsg& a, const NotFoundMsg& b) {
265 return a.vInv == b.vInv;
266 }
267 friend bool operator!=(const NotFoundMsg& a, const NotFoundMsg& b) {
268 return !(a == b);
269 }
270};
271
272struct BlockMsg {
273 Block block;
274
275 ADD_SERIALIZE_METHODS;
276
277 template <typename Stream, typename Operation>
278 inline void SerializationOp(Stream& s, Operation ser_action) {
279 READWRITE(this->block);
280 }
281
282 friend bool operator==(const BlockMsg& a, const BlockMsg& b) {
283 return a.block == b.block;
284 }
285 friend bool operator!=(const BlockMsg& a, const BlockMsg& b) {
286 return !(a == b);
287 }
288};
289
290} // namespace btc
291
292} // namespace altintegration
293
294#endif
Defines logging helpers.
Definition: block.hpp:14
The basic transaction that is broadcasted on the network and contained in blocks.
Definition: transaction.hpp:98