Browse Source

[net] remove unused return type bool from CNode::Ban()

pull/4/head
Jonas Schnelli 9 years ago
committed by Jack Grigg
parent
commit
445cd761c5
No known key found for this signature in database GPG Key ID: 6A6914DAFBEA00DA
  1. 4
      src/net.cpp
  2. 2
      src/net.h

4
src/net.cpp

@ -464,7 +464,7 @@ bool CNode::IsBanned(CNetAddr ip)
return fResult;
}
bool CNode::Ban(const CNetAddr &addr, int64_t bantimeoffset) {
void CNode::Ban(const CNetAddr &addr, int64_t bantimeoffset) {
int64_t banTime = GetTime()+GetArg("-bantime", 60*60*24); // Default 24-hour ban
if (bantimeoffset > 0)
banTime = GetTime()+bantimeoffset;
@ -472,8 +472,6 @@ bool CNode::Ban(const CNetAddr &addr, int64_t bantimeoffset) {
LOCK(cs_setBanned);
if (setBanned[addr] < banTime)
setBanned[addr] = banTime;
return true;
}
bool CNode::Unban(const CNetAddr &addr) {

2
src/net.h

@ -613,7 +613,7 @@ public:
// new code.
static void ClearBanned(); // needed for unit testing
static bool IsBanned(CNetAddr ip);
static bool Ban(const CNetAddr &ip, int64_t bantimeoffset = 0);
static void Ban(const CNetAddr &ip, int64_t bantimeoffset = 0);
static bool Unban(const CNetAddr &ip);
static void GetBanned(std::map<CNetAddr, int64_t> &banmap);

Loading…
Cancel
Save