Implement the backend for automatically provisioning relays

This commit is contained in:
2019-01-26 01:57:24 +00:00
parent 6046329a83
commit 4efea3f535
15 changed files with 356 additions and 160 deletions

View File

@@ -20,7 +20,8 @@ def sendInfo(addr, data):
def sendAll(data):
for i in main.connections:
main.connections[i].send(data)
if main.connections[i].authed:
main.connections[i].send(data)
return
def incorrectUsage(addr, mode):