mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
unit_tests: undo is_blocked implementation factoring
The is_host_blocked method is not on master yet
This commit is contained in:
parent
37c4f1b365
commit
e3dea47859
1 changed files with 12 additions and 1 deletions
|
@ -93,7 +93,18 @@ typedef nodetool::node_server<cryptonote::t_cryptonote_protocol_handler<test_cor
|
||||||
|
|
||||||
static bool is_blocked(Server &server, const epee::net_utils::network_address &address, time_t *t = NULL)
|
static bool is_blocked(Server &server, const epee::net_utils::network_address &address, time_t *t = NULL)
|
||||||
{
|
{
|
||||||
return server.is_host_blocked(address.host_str(), t);
|
const std::string host = address.host_str();
|
||||||
|
std::map<std::string, time_t> hosts = server.get_blocked_hosts();
|
||||||
|
for (auto rec: hosts)
|
||||||
|
{
|
||||||
|
if (rec.first == host)
|
||||||
|
{
|
||||||
|
if (t)
|
||||||
|
*t = rec.second;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(ban, add)
|
TEST(ban, add)
|
||||||
|
|
Loading…
Reference in a new issue