Fixed & Tested that now we can open multiple redirections over same

tunnel.
This commit is contained in:
Adolfo Gómez García 2016-04-28 12:49:23 +02:00
parent 08eeff5604
commit 5da12a8091
2 changed files with 2 additions and 4 deletions

View File

@ -101,7 +101,7 @@ class ForwardThread(threading.Thread):
if localPort is None:
localPort = random.randrange(40000, 50000)
ft = ForwardThread(self.server, self.port, self.username, self.password, localPort, redirectHost, redirectPort. self.waitTime)
ft = ForwardThread(self.server, self.port, self.username, self.password, localPort, redirectHost, redirectPort, self.waitTime)
ft.client = self.client
self.client.useCount += 1 # One more using this client
ft.start()
@ -135,8 +135,6 @@ class ForwardThread(threading.Thread):
self.status = 2 # Error
return
self.clientUseCount += 1
class SubHandler(Handler):
chain_host = self.redirectHost
chain_port = self.redirectPort

View File

@ -39,7 +39,7 @@ logging.basicConfig(
filename=os.path.join(tempfile.gettempdir(), b'udsclient.log'),
filemode='a',
format='%(levelname)s %(asctime)s %(message)s',
level=logging.INFO
level=logging.DEBUG
)
logger = logging.getLogger('udsclient')