diff --git a/communicationScripts/server.py b/communicationScripts/server.py index 8a0380d19893c153d07315ee12d8968646397389..4a5b999780d9654e84134c6cf38ec2d594ec9e3c 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}...")