summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-09 23:43:32 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-09 23:43:32 +0000
commit1c6241ecd36b1f5492c71569492f54c22a8cb96b (patch)
tree434c4fb9ad964906652559ac3ada0631c35501f2 /src/inspircd.cpp
parent8399a0bede79afd8f8a7cb23a4ded974584d437a (diff)
Hit dns with spork. Repeat until crispy.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1349 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 79b34247c..f82be162e 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -4294,6 +4294,7 @@ int InspIRCd(char** argv, int argc)
endingiter = count2;
count2 = xcount; // roll back to where we were
#else
+ dns_poll();
// KQUEUE: We don't go through a loop to fill the fd_set so instead we must manually do this loop every now and again.
// TODO: We dont need to do all this EVERY loop iteration, tone down the visits to this if we're using kqueue.
while (count2 != clientlist.end())
@@ -4314,7 +4315,7 @@ int InspIRCd(char** argv, int argc)
}
if ((TIME > curr->signon) && (curr->registered == 3) && (AllModulesReportReady(curr)))
{
- log(DEBUG,"signon exceed, registered=3, and modules ready, OK");
+ log(DEBUG,"signon exceed, registered=3, and modules ready, OK: %d %d",TIME,curr->signon);
curr->dns_done = true;
statsDnsBad++;
FullConnectUser(curr);