예제 #1
0
파일: agent.py 프로젝트: nictuku/nwu
 def __init__(self, app):
     RPCHandler.__init__(self, app, PRIV_AGENT)
예제 #2
0
파일: admin.py 프로젝트: nictuku/nwu
 def __init__(self, app):
     RPCHandler.__init__(self, app, PRIV_ADMIN)
     self.cryptoHelper = app.cryptoHelper
예제 #3
0
파일: anonymous.py 프로젝트: nictuku/nwu
 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