diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-10-28 17:19:55 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-10-28 17:19:55 +0000 |
commit | 35529718181c14610669054fcc0a80b8bf305666 (patch) | |
tree | 72162fdda3d58bfb5cdafc93be2545e9073eb61a /include | |
parent | b132870564a6dd2f123f458c53f2cee5d28a9124 (diff) |
Needs more testing but seems to work: In DoBackgroundUserStuff(), calculate the time value of when we actually do need enter the function body again, and dont run function body again till that time
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5568 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/inspircd.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index 8c897305f..16b42e50b 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -421,6 +421,10 @@ class InspIRCd : public classbase */ FactoryList factory; + /** The time we next call our ping timeout and reg timeout checks + */ + time_t next_call; + /** Get the current time * Because this only calls time() once every time around the mainloop, * it is much faster than calling time() directly. |