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