diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-21 12:22:39 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-21 12:22:39 +0000 |
commit | 4487dde76ffbdb21e7dc319b3b87d09c3cf60d8c (patch) | |
tree | ba24a999e2d1d9a5d708ef3df66058d35d18f410 /include/inspircd.h | |
parent | 7c5ab78be2fabce6d11e13ec819799527ddb738c (diff) |
Remove next_call garbage.. It didn't really do much more than obfuscate things. InspIRCd::DoBackgroundUserStuff() is now called once per second, roughly. This will (of course) not be going into 1.1.x
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8241 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/inspircd.h')
-rw-r--r-- | include/inspircd.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index 9e3fd16de..28d2d534c 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -279,9 +279,8 @@ class CoreExport InspIRCd : public classbase void InitialiseUID(); /** Perform background user events such as PING checks - * @param TIME the current time */ - void DoBackgroundUserStuff(time_t TIME); + void DoBackgroundUserStuff(); /** Returns true when all modules have done pre-registration checks on a user * @param user The user to verify @@ -463,10 +462,6 @@ class CoreExport InspIRCd : public classbase */ XLineManager* XLines; - /** The time we next call our ping timeout and reg timeout checks - */ - time_t next_call; - /** Set to the current signal recieved */ int s_signal; |