WIP: Add support for tor using PySocks and optionally stem #2

Draft
lee.miller wants to merge 22 commits from lee.miller/MiNode:tor into v0.3
2 changed files with 3 additions and 1 deletions
Showing only changes of commit c342fb0156 - Show all commits

View File

@ -286,7 +286,7 @@ def main():
tor = None tor = None
else: else:
if not tor.start_tor_service(): if not tor.start_tor_service():
logging.warning('Failed to start tor service.') logging.warning('The tor service has hot started.')
tor = None tor = None
if not tor: if not tor:
try: try:

View File

@ -68,6 +68,8 @@ def start_tor_service():
init_msg_handler=logwrite) init_msg_handler=logwrite)
except OSError: except OSError:
if not attempt: if not attempt:
if not shared.listen_for_connections:
return
try: try:
stem.version.get_system_tor_version() stem.version.get_system_tor_version()
except IOError: except IOError: