From 26165b43923d12b55b5e534fab1967e4ab2e6c7e Mon Sep 17 00:00:00 2001 From: Dominik Fuhrmann <dominik.fuhrmann1@gmail.com> Date: Tue, 24 Dec 2024 13:46:39 +0100 Subject: [PATCH] debugging --- communicationScripts/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/communicationScripts/server.py b/communicationScripts/server.py index 8a0380d..4a5b999 100644 --- a/communicationScripts/server.py +++ b/communicationScripts/server.py @@ -14,7 +14,7 @@ def run_server(): # Server-Socket erstellen with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock: - sock.bind(("0.0.0.0", 5000)) # Lauschen auf allen Schnittstellen + sock.bind(("192.168.178.51", 5000)) # Lauschen auf allen Schnittstellen sock.listen(5) print(f"Server läuft auf Port 5000 mit Cipher Suite: {cipher_suite}...") -- GitLab