diff options
| author | Vasil Dimov <[email protected]> | 2020-05-20 12:05:18 +0200 |
|---|---|---|
| committer | Vasil Dimov <[email protected]> | 2020-10-09 16:42:50 +0200 |
| commit | 353a3fdaad055eea42a0baf7326bdd591f541170 (patch) | |
| tree | ab25e783cbf347df239d98060f83dcf2ea72209a /src/protocol.cpp | |
| parent | net: CAddress & CAddrMan: (un)serialize as ADDRv2 (diff) | |
| download | discoin-353a3fdaad055eea42a0baf7326bdd591f541170.tar.xz discoin-353a3fdaad055eea42a0baf7326bdd591f541170.zip | |
net: advertise support for ADDRv2 via new message
Introduce a new message `sendaddrv2` to signal support for ADDRv2.
Send the new message immediately after sending the `VERACK` message.
Add support for receiving and parsing ADDRv2 messages.
Send ADDRv2 messages (instead of ADDR) to a peer if he has
advertised support for it.
Co-authored-by: Carl Dong <[email protected]>
Diffstat (limited to 'src/protocol.cpp')
| -rw-r--r-- | src/protocol.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/protocol.cpp b/src/protocol.cpp index 84b6e96ae..dc8f795a0 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -14,6 +14,8 @@ namespace NetMsgType { const char *VERSION="version"; const char *VERACK="verack"; const char *ADDR="addr"; +const char *ADDRV2="addrv2"; +const char *SENDADDRV2="sendaddrv2"; const char *INV="inv"; const char *GETDATA="getdata"; const char *MERKLEBLOCK="merkleblock"; @@ -52,6 +54,8 @@ const static std::string allNetMessageTypes[] = { NetMsgType::VERSION, NetMsgType::VERACK, NetMsgType::ADDR, + NetMsgType::ADDRV2, + NetMsgType::SENDADDRV2, NetMsgType::INV, NetMsgType::GETDATA, NetMsgType::MERKLEBLOCK, |