diff options
| author | Jon Atack <[email protected]> | 2020-09-23 10:23:44 +0200 |
|---|---|---|
| committer | Jon Atack <[email protected]> | 2020-10-14 14:55:55 +0200 |
| commit | 6df7882029854f0427d84b22081018ae77e27e66 (patch) | |
| tree | 0d4b6ecedae58e3a28b8768817a544808f841e51 /src | |
| parent | Merge #19998: net: Add CNode::ConnectedThroughNetwork member function (diff) | |
| download | discoin-6df7882029854f0427d84b22081018ae77e27e66.tar.xz discoin-6df7882029854f0427d84b22081018ae77e27e66.zip | |
net: add peer network to CNodeStats
Diffstat (limited to 'src')
| -rw-r--r-- | src/net.cpp | 1 | ||||
| -rw-r--r-- | src/net.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/net.cpp b/src/net.cpp index 54d572c68..5db7fc9e7 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -552,6 +552,7 @@ void CNode::copyStats(CNodeStats &stats, const std::vector<bool> &m_asmap) X(nServices); X(addr); X(addrBind); + stats.m_network = GetNetworkName(ConnectedThroughNetwork()); stats.m_mapped_as = addr.GetMappedAS(m_asmap); if (m_tx_relay != nullptr) { LOCK(m_tx_relay->cs_filter); @@ -706,6 +706,8 @@ public: CAddress addr; // Bind address of our side of the connection CAddress addrBind; + // Name of the network the peer connected through + std::string m_network; uint32_t m_mapped_as; std::string m_conn_type_string; }; |