summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 0e4a6646f..c40c5fb00 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -748,7 +748,7 @@ int InspIRCd::Run()
}
Timers->TickTimers(TIME.tv_sec);
- this->DoBackgroundUserStuff();
+ Users->DoBackgroundUserStuff();
if ((TIME.tv_sec % 5) == 0)
{
@@ -781,19 +781,6 @@ int InspIRCd::Run()
return 0;
}
-/**********************************************************************************/
-
-/* this returns true when all modules are satisfied that the user should be allowed onto the irc server
- * (until this returns true, a user will block in the waiting state, waiting to connect up to the
- * registration timeout maximum seconds)
- */
-bool InspIRCd::AllModulesReportReady(LocalUser* user)
-{
- ModResult res;
- FIRST_MOD_RESULT(OnCheckReady, res, (user));
- return (res == MOD_RES_PASSTHRU);
-}
-
sig_atomic_t InspIRCd::s_signal = 0;
void InspIRCd::SetSignal(int signal)