Esempio n. 1
0
File: agent.py Progetto: nictuku/nwu
 def __init__(self, app):
     RPCHandler.__init__(self, app, PRIV_AGENT)
Esempio n. 2
0
File: admin.py Progetto: nictuku/nwu
 def __init__(self, app):
     RPCHandler.__init__(self, app, PRIV_ADMIN)
     self.cryptoHelper = app.cryptoHelper
Esempio n. 3
0
 def __init__(self, app):
     RPCHandler.__init__(self, app, PRIV_ANONYMOUS)
     self.cacert_data = open(app.ca_cert, 'r').read()
     self.servercert_data = open(app.server_crt, 'r').read()
     self.log = app.log