mirror of
https://github.com/inspircd/inspircd.git
synced 2025-04-04 23:30:05 -04:00
Make sure that the hostname isnt set after the timeout period
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4912 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
48291aaee5
commit
a5da688e2b
@ -148,10 +148,14 @@ void UserResolver::OnLookupComplete(const std::string &result)
|
|||||||
ServerInstance->Log(DEBUG,"Commencing forward lookup");
|
ServerInstance->Log(DEBUG,"Commencing forward lookup");
|
||||||
this->bound_user->stored_host = result;
|
this->bound_user->stored_host = result;
|
||||||
try
|
try
|
||||||
|
{
|
||||||
|
/* Check we didnt time out */
|
||||||
|
if (this->bound_user->registered != REG_ALL)
|
||||||
{
|
{
|
||||||
bound_user->res_forward = new UserResolver(this->ServerInstance, this->bound_user, result, true);
|
bound_user->res_forward = new UserResolver(this->ServerInstance, this->bound_user, result, true);
|
||||||
this->ServerInstance->AddResolver(bound_user->res_forward);
|
this->ServerInstance->AddResolver(bound_user->res_forward);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
catch (ModuleException& e)
|
catch (ModuleException& e)
|
||||||
{
|
{
|
||||||
ServerInstance->Log(DEBUG,"Error in resolver: %s",e.GetReason());
|
ServerInstance->Log(DEBUG,"Error in resolver: %s",e.GetReason());
|
||||||
@ -164,6 +168,9 @@ void UserResolver::OnLookupComplete(const std::string &result)
|
|||||||
{
|
{
|
||||||
std::string hostname = this->bound_user->stored_host;
|
std::string hostname = this->bound_user->stored_host;
|
||||||
if (hostname.length() < 65)
|
if (hostname.length() < 65)
|
||||||
|
{
|
||||||
|
/* Check we didnt time out */
|
||||||
|
if (this->bound_user->registered != REG_ALL)
|
||||||
{
|
{
|
||||||
/* Hostnames starting with : are not a good thing (tm) */
|
/* Hostnames starting with : are not a good thing (tm) */
|
||||||
if (*(hostname.c_str()) == ':')
|
if (*(hostname.c_str()) == ':')
|
||||||
@ -174,6 +181,7 @@ void UserResolver::OnLookupComplete(const std::string &result)
|
|||||||
strlcpy(this->bound_user->dhost, hostname.c_str(),64);
|
strlcpy(this->bound_user->dhost, hostname.c_str(),64);
|
||||||
strlcpy(this->bound_user->host, hostname.c_str(),64);
|
strlcpy(this->bound_user->host, hostname.c_str(),64);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this->bound_user->WriteServ("NOTICE Auth :*** Your hostname is longer than the maximum of 64 characters, using your IP address (%s) instead.", this->bound_user->GetIPString());
|
this->bound_user->WriteServ("NOTICE Auth :*** Your hostname is longer than the maximum of 64 characters, using your IP address (%s) instead.", this->bound_user->GetIPString());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user