diff --git a/communicationScripts/client.py b/communicationScripts/client.py index abf637944bd3a0fba1d492165abae20f9a35705c..8410ba64c6fe66536f37fabe9b7b47ffb1d80774 100644 --- a/communicationScripts/client.py +++ b/communicationScripts/client.py @@ -12,9 +12,9 @@ def run_client(file_path): # Sichere Verbindung mit dem Server herstellen try: - with socket.create_connection(("192.168.201.132", 5000)) as sock: + with socket.create_connection(("192.168.125.101", 5000)) as sock: print("Verbindung zum Server wird hergestellt...") - with context.wrap_socket(sock, server_hostname="192.168.201.132") as ssl_sock: + with context.wrap_socket(sock, server_hostname="192.168.125.101") as ssl_sock: print("Mit dem Server verbunden!") # Datei senden diff --git a/setup/pythonInstallation.sh b/setup/pythonInstallation.sh index 88c0014d6cc93d9d78205fc93d4037d4dac5fcde..dc723a82d0b2b2c01d2a5b5cb16011828d9a5a11 100644 --- a/setup/pythonInstallation.sh +++ b/setup/pythonInstallation.sh @@ -4,7 +4,6 @@ sudo apt install python3-venv # Create python virtual environment python3 -m venv "projectEnv" -# TODO # Activate venv source projectEnv/bin/activate