Increased DDOS protection delay.

This commit is contained in:
Achim D. Brucker 2017-01-28 17:21:25 +00:00
parent f41a2f67b1
commit 111c5394c3
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ from datetime import datetime, timezone
def google_dos_protection(max=3):
sleep(randint(1, max) * .5)
sleep(randint(1, max) * .75)
def log(verbose, msg):