Bitcoin Core 28.99.0
P2P Digital Currency
|
#include <bitcoin-build-config.h>
#include <addrdb.h>
#include <addrman.h>
#include <chainparams.h>
#include <clientversion.h>
#include <common/args.h>
#include <common/settings.h>
#include <cstdint>
#include <hash.h>
#include <logging.h>
#include <logging/timer.h>
#include <netbase.h>
#include <netgroup.h>
#include <random.h>
#include <streams.h>
#include <tinyformat.h>
#include <univalue.h>
#include <util/fs.h>
#include <util/fs_helpers.h>
#include <util/translation.h>
Go to the source code of this file.
Functions | |
bool | DumpPeerAddresses (const ArgsManager &args, const AddrMan &addr) |
void | ReadFromStream (AddrMan &addr, DataStream &ssPeers) |
Only used by tests. More... | |
util::Result< std::unique_ptr< AddrMan > > | LoadAddrman (const NetGroupManager &netgroupman, const ArgsManager &args) |
Returns an error string on failure. More... | |
void | DumpAnchors (const fs::path &anchors_db_path, const std::vector< CAddress > &anchors) |
Dump the anchor IP address database (anchors.dat) More... | |
std::vector< CAddress > | ReadAnchors (const fs::path &anchors_db_path) |
Read the anchor IP address database (anchors.dat) More... | |
Dump the anchor IP address database (anchors.dat)
Anchors are last known outgoing block-relay-only peers that are tried to re-connect to on startup.
Definition at line 223 of file addrdb.cpp.
bool DumpPeerAddresses | ( | const ArgsManager & | args, |
const AddrMan & | addr | ||
) |
Definition at line 180 of file addrdb.cpp.
util::Result< std::unique_ptr< AddrMan > > LoadAddrman | ( | const NetGroupManager & | netgroupman, |
const ArgsManager & | args | ||
) |
Returns an error string on failure.
Definition at line 191 of file addrdb.cpp.
Read the anchor IP address database (anchors.dat)
Deleting anchors.dat is intentional as it avoids renewed peering to anchors after an unclean shutdown and thus potential exploitation of the anchor peer policy.
Definition at line 229 of file addrdb.cpp.
void ReadFromStream | ( | AddrMan & | addr, |
DataStream & | ssPeers | ||
) |
Only used by tests.
Definition at line 186 of file addrdb.cpp.