Ejemplo n.º 1
0
Archivo: agent.py Proyecto: nictuku/nwu
 def __init__(self, app):
     RPCHandler.__init__(self, app, PRIV_AGENT)
Ejemplo n.º 2
0
Archivo: admin.py Proyecto: nictuku/nwu
 def __init__(self, app):
     RPCHandler.__init__(self, app, PRIV_ADMIN)
     self.cryptoHelper = app.cryptoHelper
Ejemplo 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