forked from shaba/openuds
Merge remote-tracking branch 'origin/v3.5'
This commit is contained in:
commit
ccdd15ed50
@ -8,6 +8,8 @@ echo "Installation process done."
|
|||||||
echo "Remember that the following packages must be installed on system:"
|
echo "Remember that the following packages must be installed on system:"
|
||||||
echo "* Python3 paramiko"
|
echo "* Python3 paramiko"
|
||||||
echo "* Python3 PyQt5"
|
echo "* Python3 PyQt5"
|
||||||
|
echo "* Python3 six"
|
||||||
echo "* Python3 requests"
|
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 "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"
|
echo "Also, ensure that a /media folder exists on your machine, that will be redirected on RDP connections"
|
||||||
|
@ -221,6 +221,7 @@ def tunnel_main():
|
|||||||
while not do_stop:
|
while not do_stop:
|
||||||
try:
|
try:
|
||||||
client, addr = sock.accept()
|
client, addr = sock.accept()
|
||||||
|
logger.debug('ACCEPTED CONNECTION from %s (%s)', addr, client)
|
||||||
# Select BEST process for sending this new connection
|
# Select BEST process for sending this new connection
|
||||||
prcs.best_child().send((client, addr))
|
prcs.best_child().send((client, addr))
|
||||||
del client # Ensure socket is controlled on child process
|
del client # Ensure socket is controlled on child process
|
||||||
|
Loading…
Reference in New Issue
Block a user