mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
[net] Remove CConnMan::SetAsmap()
CAddrMan::m_asmap is now set directly in AppInitMain() so CConnMan::SetAsmap() is no longer required.
This commit is contained in:
parent
50fd77045e
commit
593247872d
2 changed files with 0 additions and 8 deletions
|
@ -949,8 +949,6 @@ public:
|
||||||
*/
|
*/
|
||||||
std::chrono::microseconds PoissonNextSendInbound(std::chrono::microseconds now, std::chrono::seconds average_interval);
|
std::chrono::microseconds PoissonNextSendInbound(std::chrono::microseconds now, std::chrono::seconds average_interval);
|
||||||
|
|
||||||
void SetAsmap(std::vector<bool> asmap) { addrman.m_asmap = std::move(asmap); }
|
|
||||||
|
|
||||||
/** Return true if we should disconnect the peer for failing an inactivity check. */
|
/** Return true if we should disconnect the peer for failing an inactivity check. */
|
||||||
bool ShouldRunInactivityChecks(const CNode& node, std::optional<int64_t> now=std::nullopt) const;
|
bool ShouldRunInactivityChecks(const CNode& node, std::optional<int64_t> now=std::nullopt) const;
|
||||||
|
|
||||||
|
|
|
@ -103,12 +103,6 @@ FUZZ_TARGET_INIT(connman, initialize_connman)
|
||||||
[&] {
|
[&] {
|
||||||
connman.RemoveAddedNode(random_string);
|
connman.RemoveAddedNode(random_string);
|
||||||
},
|
},
|
||||||
[&] {
|
|
||||||
const std::vector<bool> asmap = ConsumeRandomLengthBitVector(fuzzed_data_provider);
|
|
||||||
if (SanityCheckASMap(asmap)) {
|
|
||||||
connman.SetAsmap(asmap);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
[&] {
|
[&] {
|
||||||
connman.SetNetworkActive(fuzzed_data_provider.ConsumeBool());
|
connman.SetNetworkActive(fuzzed_data_provider.ConsumeBool());
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue