From c201993bec0f6f19ffb41d6ec3e491eacebcd780 Mon Sep 17 00:00:00 2001 From: t Date: Sat, 21 Oct 2023 18:26:02 +0300 Subject: [PATCH] Change host --- list.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/list.py b/list.py index 9d28829..697f500 100644 --- a/list.py +++ b/list.py @@ -2,8 +2,6 @@ mode = 0 # CHANGE ME # 0 - client mode # 1 - server mode -#port = 14618 - import socket from os import system as ss from random import randint @@ -110,9 +108,8 @@ def client(): from requests import get host = 'bore.pub' - #file = get('https://gitlab.com/justuser31/p2p_justuser/-/raw/main/list_server.info') - #port = int(file.content) - port = 28938 + file = get('https://gitea.gulyaipole.fun/justuser/p2p_justuser/raw/branch/main/list_server.info') + port = int(file.content) client_socket = socket.socket() client_socket.connect((host, port))