Exemplo n.º 1
0
 def __init__(self, ip, timeout=10):
     self.timeout = timeout
     self.socket = cast_socket.CastSocket(ip)
     self.channel_controller = ChannelController(self.socket)
Exemplo n.º 2
0
 def __init__(self, ip, max_retries=15):
     self.max_retries = max_retries
     self.socket = cast_socket.CastSocket(ip)
     self.channel_controller = ChannelController(self.socket)