コード例 #1
0
ファイル: proxy.py プロジェクト: noscripter/root-2015-tasks
 def __init__(self, allowed_address, *args, **kwargs):
     self.allowed_address = allowed_address
     ProxyRequest.__init__(self, *args, **kwargs)
コード例 #2
0
 def __init__(self, channel, queued, reactor=reactor):
     ProxyRequest.__init__(self, channel, queued, reactor)
     self.mode = channel.transport.server.port - self.baseport
 def __init__(self, channel, queued, reactor=reactor):
     ProxyRequest.__init__(self, channel, queued, reactor)
     self.mode = channel.transport.server.port - self.baseport
コード例 #4
0
ファイル: host_run.py プロジェクト: shauvik/webdiff
 def __init__(self, ds, *args):
     self.ds = ds
     ProxyRequest.__init__(self, *args)
コード例 #5
0
ファイル: proxy.py プロジェクト: p141592/root-2015-tasks
 def __init__(self, allowed_address, *args, **kwargs):
     self.allowed_address = allowed_address
     ProxyRequest.__init__(self, *args, **kwargs)
コード例 #6
0
 def __init__(self, channel, queued):
     ProxyRequest.__init__(self, channel, queued)
     self.coap_client = HelperClient(server=("127.0.0.1", 5683), forward=True)