aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Security/Bruteforce/Throttler.php
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2016-08-26 15:10:03 +0200
committerRobin Appelman <robin@icewind.nl>2016-08-29 13:36:49 +0200
commit6c93fe08f53bff474921d150edabb27ca630edd7 (patch)
treeafdc87fb14c91e0dbc71b32e7f8c5abbb70e40e6 /lib/private/Security/Bruteforce/Throttler.php
parent3647fbe7cd86e743b059889d69b03fcf8207780f (diff)
downloadnextcloud-server-6c93fe08f53bff474921d150edabb27ca630edd7.tar.gz
nextcloud-server-6c93fe08f53bff474921d150edabb27ca630edd7.zip
dont get bruteforce delay twice
Diffstat (limited to 'lib/private/Security/Bruteforce/Throttler.php')
-rw-r--r--lib/private/Security/Bruteforce/Throttler.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/private/Security/Bruteforce/Throttler.php b/lib/private/Security/Bruteforce/Throttler.php
index 11a343918c6..031c5ffd411 100644
--- a/lib/private/Security/Bruteforce/Throttler.php
+++ b/lib/private/Security/Bruteforce/Throttler.php
@@ -225,8 +225,11 @@ class Throttler {
* Will sleep for the defined amount of time
*
* @param string $ip
+ * @return int the time spent sleeping
*/
public function sleepDelay($ip) {
- usleep($this->getDelay($ip) * 1000);
+ $delay = $this->getDelay($ip);
+ usleep($delay * 1000);
+ return $delay;
}
}