added addpeer command and misc bug fixes

This commit is contained in:
Kevin Froman 2018-01-29 01:05:02 -06:00
parent 71bff27245
commit dd9a54f7c6
No known key found for this signature in database
GPG key ID: 0D414D0FE405B63B
4 changed files with 12 additions and 2 deletions

View file

@ -109,6 +109,14 @@ class Onionr:
os.remove('.onionr-lock')
elif command == 'stop':
self.killDaemon()
elif command == 'addpeer':
try:
newPeer = sys.argv[2]
except:
pass
else:
logger.info("Adding peer.")
self.onionrCore.addPeer(newPeer)
elif command in ('listpeers', 'list-peers'):
logger.info('Peer list:\n')
for i in self.onionrCore.listPeers():