Merge remote-tracking branch 'origin/v3.5'

This commit is contained in:
Adolfo Gómez García 2022-03-15 16:30:23 +01:00
commit ccdd15ed50
2 changed files with 3 additions and 0 deletions

View File

@ -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"

View File

@ -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