diff options
-rw-r--r-- | src/userprocess.cpp | 2 | ||||
-rw-r--r-- | src/users.cpp | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/src/userprocess.cpp b/src/userprocess.cpp index ee9c75bc0..2792a28dc 100644 --- a/src/userprocess.cpp +++ b/src/userprocess.cpp @@ -55,7 +55,7 @@ void InspIRCd::DoBackgroundUserStuff() if (curr->quitting) continue; - if (curr->CommandFloodPenalty) + if (curr->CommandFloodPenalty || curr->eh.getSendQSize()) { unsigned int rate = curr->MyClass->GetCommandRate(); if (curr->CommandFloodPenalty > rate) diff --git a/src/users.cpp b/src/users.cpp index 2bd96ac90..5ff890fd7 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -513,9 +513,6 @@ eol_found: if (user->quitting) return; } - // Add pseudo-penalty so that we continue processing after sendq recedes - if (user->CommandFloodPenalty == 0 && getSendQSize() >= sendqmax) - user->CommandFloodPenalty++; if (user->CommandFloodPenalty >= penaltymax && !user->MyClass->fakelag) ServerInstance->Users->QuitUser(user, "Excess Flood"); } |