diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-22 16:40:02 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-22 16:40:02 +0000 |
commit | 29b51086b95c86f812ac35ed7d3333f060ba5a8c (patch) | |
tree | 89aa4084906075fac71ebfbafd627ae2f60732fa /include | |
parent | 6dd148749fc9f141746ad26b5c6d606560f448ad (diff) |
Nuke TIMESYNC from orbit \o/
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8998 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/inspircd.h | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index ec7fbd63a..5f528c16b 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -304,11 +304,6 @@ class CoreExport InspIRCd : public classbase */ socklen_t length; - /** Time offset in seconds - * This offset is added to all calls to Time(). Use SetTimeDelta() to update - */ - int time_delta; - #ifdef WIN32 IPC* WindowsIPC; #endif @@ -440,23 +435,9 @@ class CoreExport InspIRCd : public classbase /** Get the current time * Because this only calls time() once every time around the mainloop, * it is much faster than calling time() directly. - * @param delta True to use the delta as an offset, false otherwise * @return The current time as an epoch value (time_t) */ - time_t Time(bool delta = false); - - /** Set the time offset in seconds - * This offset is added to Time() to offset the system time by the specified - * number of seconds. - * @param delta The number of seconds to offset - * @return The old time delta - */ - int SetTimeDelta(int delta); - - /** Get the time offset in seconds - * @return The current time delta (in seconds) - */ - int GetTimeDelta(); + time_t Time(); /** Process a user whos socket has been flagged as active * @param cu The user to process |