[Friends] Correctly hide localhost
This commit is contained in:
parent
8dad28caef
commit
7eef2ccf96
@ -102,8 +102,8 @@ namespace Components
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Block localhost
|
// Block localhost
|
||||||
if (entry->server.getType() == Game::NA_LOOPBACK) entry->server.setType(Game::NA_BAD);
|
if (entry->server.getType() == Game::NA_LOOPBACK || (entry->server.getType() == Game::NA_IP && entry->server.getIP().full == 0x0100007F)) entry->server.setType(Game::NA_BAD);
|
||||||
if (entry->server.getType() != Game::NA_BAD && entry->server != oldAddress)
|
else if (entry->server.getType() != Game::NA_BAD && entry->server != oldAddress)
|
||||||
{
|
{
|
||||||
Node::AddNode(entry->server);
|
Node::AddNode(entry->server);
|
||||||
Network::SendCommand(entry->server, "getinfo", Utils::Cryptography::Rand::GenerateChallenge());
|
Network::SendCommand(entry->server, "getinfo", Utils::Cryptography::Rand::GenerateChallenge());
|
||||||
|
Loading…
Reference in New Issue
Block a user