From afc9f86aa5af591d4e7e8bd0b55641a7bab6744c Mon Sep 17 00:00:00 2001 From: murmur Date: Sun, 12 Mar 2023 13:28:11 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E7=AB=AF=E5=8F=A3=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.py b/server.py index 9194c74..8c569a1 100755 --- a/server.py +++ b/server.py @@ -230,7 +230,7 @@ if __name__ == "__main__": # load_cache cache = load_cache() - server = socketserver.ThreadingTCPServer(("localhost", 8005), MyServer) + server = socketserver.ThreadingTCPServer(("localhost", 7222), MyServer) ip, port = server.server_address print("服务端已建立:", ip, port) server.serve_forever()