Small tunnel fix and installer info

This commit is contained in:
Adolfo Gómez García 2022-03-15 13:38:50 +01:00
parent 0d77e86af2
commit 7bed6ac171
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

@ -227,6 +227,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(
message.Message(message.Command.TUNNEL, (client, addr))