remove IP blocking and rate-limiting code

Closes #472.
This commit is contained in:
Sarah Hoffmann
2016-07-18 14:41:09 +02:00
parent 975c30afba
commit 4f75f4cb6e
8 changed files with 1 additions and 278 deletions

View File

@@ -9,14 +9,6 @@
}
function getLoadAverage()
{
$sLoadAverage = file_get_contents('/proc/loadavg');
$aLoadAverage = explode(' ',$sLoadAverage);
return (float)$aLoadAverage[0];
}
function getProcessorCount()
{
$sCPU = file_get_contents('/proc/cpuinfo');