diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-12 17:15:27 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-12 17:15:27 +0000 |
commit | f85091129c40facd69a72bbc00084fe5c3c0c02f (patch) | |
tree | 606b521dff4ea15bc94ba0f0151b4fcddb0d8b81 /src/inspircd.cpp | |
parent | a82a93f488ec67c3b6605b7fcbf65c65b37066f8 (diff) |
Commented more stuff
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2347 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index f75f59580..95c9c085f 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -2677,14 +2677,14 @@ int InspIRCd(char** argv, int argc) // *FIX* Instead of closing sockets in kill_link when they receive the ERROR :blah line, we should queue // them in a list, then reap the list every second or so. - if (((TIME % 5) == 0) && (!expire_run)) + if (((TIME % 8) == 0) && (!expire_run)) { expire_lines(); FOREACH_MOD OnBackgroundTimer(TIME); expire_run = true; continue; } - if ((TIME % 5) == 1) + if ((TIME % 8) == 1) expire_run = false; DoBackgroundUserStuff(TIME); |