mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-15 21:49:02 -04:00
Ensure it cant happen the other way around, either
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6822 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
6e98307171
commit
ef8b080895
@ -266,8 +266,11 @@ void InspIRCd::DoBackgroundUserStuff(time_t TIME)
|
|||||||
bool ready = AllModulesReportReady(curr);
|
bool ready = AllModulesReportReady(curr);
|
||||||
if ((TIME > curr->signon) && (curr->registered == REG_NICKUSER) && (ready))
|
if ((TIME > curr->signon) && (curr->registered == REG_NICKUSER) && (ready))
|
||||||
{
|
{
|
||||||
curr->WriteServ("NOTICE Auth :*** Could not resolve your hostname: Request timed out; using your IP address (%s) instead.", curr->GetIPString());
|
if (!curr->dns_done)
|
||||||
curr->dns_done = true;
|
{
|
||||||
|
curr->WriteServ("NOTICE Auth :*** Could not resolve your hostname: Request timed out; using your IP address (%s) instead.", curr->GetIPString());
|
||||||
|
curr->dns_done = true;
|
||||||
|
}
|
||||||
this->stats->statsDnsBad++;
|
this->stats->statsDnsBad++;
|
||||||
curr->FullConnect();
|
curr->FullConnect();
|
||||||
continue;
|
continue;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user