mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Merge pull request #7252
f208d98
p2p: ignore empty IP from DNS block list (moneromooo-monero)
This commit is contained in:
commit
7c6db2fed1
@ -2025,6 +2025,8 @@ namespace nodetool
|
||||
boost::split(ips, record, boost::is_any_of(";"));
|
||||
for (const auto &ip: ips)
|
||||
{
|
||||
if (ip.empty())
|
||||
continue;
|
||||
const expect<epee::net_utils::network_address> parsed_addr = net::get_network_address(ip, 0);
|
||||
if (!parsed_addr)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user