mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-22 23:07:59 +01:00
p2p: Add DumpAnchors()
This commit is contained in:
parent
12a1c3ad1a
commit
567008d2a0
2 changed files with 17 additions and 2 deletions
|
@ -10,6 +10,7 @@
|
||||||
#include <clientversion.h>
|
#include <clientversion.h>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <hash.h>
|
#include <hash.h>
|
||||||
|
#include <logging/timer.h>
|
||||||
#include <random.h>
|
#include <random.h>
|
||||||
#include <streams.h>
|
#include <streams.h>
|
||||||
#include <tinyformat.h>
|
#include <tinyformat.h>
|
||||||
|
@ -156,3 +157,9 @@ bool CAddrDB::Read(CAddrMan& addr, CDataStream& ssPeers)
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void DumpAnchors(const fs::path& anchors_db_path, const std::vector<CAddress>& anchors)
|
||||||
|
{
|
||||||
|
LOG_TIME_SECONDS(strprintf("Flush %d outbound block-relay-only peer addresses to anchors.dat", anchors.size()));
|
||||||
|
SerializeFileDB("anchors", anchors_db_path, anchors);
|
||||||
|
}
|
||||||
|
|
12
src/addrdb.h
12
src/addrdb.h
|
@ -11,9 +11,9 @@
|
||||||
#include <serialize.h>
|
#include <serialize.h>
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <map>
|
#include <vector>
|
||||||
|
|
||||||
class CSubNet;
|
class CAddress;
|
||||||
class CAddrMan;
|
class CAddrMan;
|
||||||
class CDataStream;
|
class CDataStream;
|
||||||
|
|
||||||
|
@ -73,4 +73,12 @@ public:
|
||||||
bool Read(banmap_t& banSet);
|
bool Read(banmap_t& banSet);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
void DumpAnchors(const fs::path& anchors_db_path, const std::vector<CAddress>& anchors);
|
||||||
|
|
||||||
#endif // BITCOIN_ADDRDB_H
|
#endif // BITCOIN_ADDRDB_H
|
||||||
|
|
Loading…
Add table
Reference in a new issue