summaryrefslogtreecommitdiff
path: root/src/dnsqueue.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-14 12:14:42 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-14 12:14:42 +0000
commit174169ac35321eedae9df6aabe7833b7df6b0279 (patch)
tree58f111de322f1dde4b928d396ed9b724930fb56d /src/dnsqueue.cpp
parentccb1837a1481ed3d9048f2e4d0d5d6309f14d17d (diff)
Rollback dns change
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4384 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/dnsqueue.cpp')
-rw-r--r--src/dnsqueue.cpp22
1 files changed, 4 insertions, 18 deletions
diff --git a/src/dnsqueue.cpp b/src/dnsqueue.cpp
index 8c9dbbb75..ce0422fde 100644
--- a/src/dnsqueue.cpp
+++ b/src/dnsqueue.cpp
@@ -5,8 +5,8 @@
* InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
* E-mail:
* <brain@chatspike.net>
- * <Craig@chatspike.net>
- *
+ * <Craig@chatspike.net>
+ *
* Written by Craig Edwards, Craig McLure, and others.
* This program is free but copyrighted software; see
* the file COPYING for details.
@@ -71,14 +71,12 @@ public:
if (usr)
{
resolver1.SetNS(std::string(Config->DNSServer));
+ if (!resolver1.ReverseLookup(std::string(usr->host), true))
{
return false;
}
strlcpy(u,nick.c_str(),NICKMAX-1);
-#ifndef THREADED_DNS
- usr->dns_fd = resolver1.GetFD();
-#endif
/* ASSOCIATE WITH DNS LOOKUP LIST */
if (resolver1.GetFD() != -1)
{
@@ -124,9 +122,6 @@ public:
WriteServ(usr->fd,"NOTICE Auth :*** Found your hostname");
}
usr->dns_done = true;
-#ifndef THREADED_DNS
- usr->dns_fd = -1;
-#endif
return true;
}
}
@@ -137,9 +132,6 @@ public:
if (usr)
{
usr->dns_done = true;
-#ifndef THREADED_DNS
- usr->dns_fd = -1;
-#endif
}
return true;
}
@@ -172,16 +164,11 @@ public:
return true;
}
}
- if ((hostname != "") && (usr))
+ if (hostname != "")
{
resolver2.ForwardLookup(hostname, true);
if (resolver2.GetFD() != -1)
- {
dnslist[resolver2.GetFD()] = this;
-#ifndef THREADED_DNS
- usr->dns_fd = resolver2.GetFD();
-#endif
- }
}
}
}
@@ -283,4 +270,3 @@ void dns_poll(int fdcheck)
if (ServerInstance && ServerInstance->SE)
ServerInstance->SE->DelFd(fdcheck);
}
-