Conform tor setup to the restrictions for incoming and outgoing connections

This commit is contained in:
Lee Miller 2023-10-26 03:32:55 +03:00
parent 175d964d70
commit 8c1454e572
Signed by: lee.miller
GPG Key ID: 4F97A5EA88F4AB63
2 changed files with 12 additions and 9 deletions

View File

@ -271,7 +271,7 @@ def main():
'Error while creating data directory in: %s', 'Error while creating data directory in: %s',
shared.data_directory, exc_info=True) shared.data_directory, exc_info=True)
if shared.socks_proxy: if shared.socks_proxy and shared.send_outgoing_connections:
try: try:
socks.PROXY_TYPES[shared.socks_proxy.scheme.upper()] socks.PROXY_TYPES[shared.socks_proxy.scheme.upper()]
except KeyError: except KeyError:

View File

@ -75,6 +75,9 @@ def start_tor_service():
logging.debug('Failed to start tor.') logging.debug('Failed to start tor.')
return return
if not shared.listen_for_connections:
return True
try: try:
controller = stem.control.Controller.from_socket_file(control_socket) controller = stem.control.Controller.from_socket_file(control_socket)
controller.authenticate() controller.authenticate()