diff --git a/client-py3/full/linux/installer.sh b/client-py3/full/linux/installer.sh index 7df83c86..7cf44307 100644 --- a/client-py3/full/linux/installer.sh +++ b/client-py3/full/linux/installer.sh @@ -8,6 +8,8 @@ echo "Installation process done." echo "Remember that the following packages must be installed on system:" echo "* Python3 paramiko" echo "* Python3 PyQt5" +echo "* Python3 six" echo "* Python3 requests" +echo "* Python3 cryptography" echo "Theese packages (as their names), are dependent on your platform, so you must locate and install them" echo "Also, ensure that a /media folder exists on your machine, that will be redirected on RDP connections" diff --git a/tunnel-server/src/udstunnel.py b/tunnel-server/src/udstunnel.py index 75e63bb3..d897ebaa 100755 --- a/tunnel-server/src/udstunnel.py +++ b/tunnel-server/src/udstunnel.py @@ -221,6 +221,7 @@ def tunnel_main(): while not do_stop: try: client, addr = sock.accept() + logger.debug('ACCEPTED CONNECTION from %s (%s)', addr, client) # Select BEST process for sending this new connection prcs.best_child().send((client, addr)) del client # Ensure socket is controlled on child process