From 7b42fa0680616483789495d6afba1a88646b9f5c Mon Sep 17 00:00:00 2001 From: justuser Date: Mon, 17 Jun 2024 08:38:54 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D1=80=D0=B0=D0=B4=D0=B8=D1=83=D1=81=D0=B0?= =?UTF-8?q?=20=D0=BF=D0=BE=D1=80=D1=82=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- network.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/network.py b/network.py index 9aebe05..0a2a711 100644 --- a/network.py +++ b/network.py @@ -26,13 +26,13 @@ from domain_check import * # 4. [+] Приём рассылки сайтов # 5. [ ] Проверка всех сайтов -def port_gen(st = 4000, end = 4200): +def port_gen(st = 25000, end = 25200): port = randint(st, end) if client(port) == None: return port while client(port) != None: - port = randint(4000, 4200) + port = randint(st, end) return port def server_http():