5#ifndef BITCOIN_BANMAN_H
6#define BITCOIN_BANMAN_H
63 void Ban(
const CNetAddr &net_addr, int64_t ban_time_offset = 0,
64 bool since_unix_epoch =
false);
65 void Ban(
const CSubNet &sub_net, int64_t ban_time_offset = 0,
66 bool since_unix_epoch =
false);
static constexpr unsigned int DEFAULT_MISBEHAVING_BANTIME
static constexpr std::chrono::minutes DUMP_BANS_INTERVAL
void Discourage(const CNetAddr &net_addr)
void Ban(const CNetAddr &net_addr, int64_t ban_time_offset=0, bool since_unix_epoch=false)
banmap_t m_banned GUARDED_BY(m_cs_banned)
const int64_t m_default_ban_time
void GetBanned(banmap_t &banmap)
bool IsBanned(const CNetAddr &net_addr)
Return whether net_addr is banned.
RecursiveMutex m_cs_banned
void SetBanned(const banmap_t &banmap)
CClientUIInterface * m_client_interface
bool Unban(const CNetAddr &net_addr)
BanMan(fs::path ban_file, const CChainParams &chainparams, CClientUIInterface *client_interface, int64_t default_ban_time)
CRollingBloomFilter m_discouraged GUARDED_BY(m_cs_banned)
bool m_is_dirty GUARDED_BY(m_cs_banned)
void SetBannedSetDirty(bool dirty=true)
set the "dirty" flag for the banlist
void SweepBanned()
clean unused entries (if bantime has expired)
bool IsDiscouraged(const CNetAddr &net_addr)
Return whether net_addr is discouraged.
Access to the banlist database (banlist.dat)
CChainParams defines various tweakable parameters of a given instance of the Bitcoin system.
Signals for UI communication.
RollingBloomFilter is a probabilistic "keep track of most recently inserted" set.
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
std::map< CSubNet, CBanEntry > banmap_t