Bitcoin ABC 0.30.5
P2P Digital Currency
|
#include <net_types.h>
#include <serialize.h>
#include <util/fs.h>
#include <util/result.h>
#include <memory>
#include <string>
#include <vector>
Go to the source code of this file.
Classes | |
class | CBanEntry |
class | CBanDB |
Access to the banlist database (banlist.dat) More... | |
Functions | |
bool | DumpPeerAddresses (const CChainParams &chainParams, const ArgsManager &args, const AddrMan &addr) |
void | ReadFromStream (const CChainParams &chainParams, AddrMan &addr, CDataStream &ssPeers) |
Only used by tests. More... | |
util::Result< std::unique_ptr< AddrMan > > | LoadAddrman (const CChainParams &chainparams, const std::vector< bool > &asmap, const ArgsManager &args) |
Returns an error string on failure. More... | |
void | DumpAnchors (const CChainParams &chainParams, 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 CChainParams &chainParams, const fs::path &anchors_db_path) |
Read the anchor IP address database (anchors.dat) More... | |
void DumpAnchors | ( | const CChainParams & | chainParams, |
const fs::path & | anchors_db_path, | ||
const std::vector< CAddress > & | anchors | ||
) |
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 215 of file addrdb.cpp.
bool DumpPeerAddresses | ( | const CChainParams & | chainParams, |
const ArgsManager & | args, | ||
const AddrMan & | addr | ||
) |
Definition at line 152 of file addrdb.cpp.
util::Result< std::unique_ptr< AddrMan > > LoadAddrman | ( | const CChainParams & | chainparams, |
const std::vector< bool > & | asmap, | ||
const ArgsManager & | args | ||
) |
Returns an error string on failure.
Definition at line 165 of file addrdb.cpp.
std::vector< CAddress > ReadAnchors | ( | const CChainParams & | chainParams, |
const fs::path & | anchors_db_path | ||
) |
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 225 of file addrdb.cpp.
void ReadFromStream | ( | const CChainParams & | chainParams, |
AddrMan & | addr, | ||
CDataStream & | ssPeers | ||
) |
Only used by tests.
Definition at line 159 of file addrdb.cpp.