def __init__(self, remote_addr, remote_port, bind_addr, bind_port): CTRLInterface.__init__(self, remote_addr, remote_port, bind_addr, bind_port) print("[i] Init CTRL interface for BB (%s)" % self.desc_link())
def __init__(self, trx, *udp_link_args): CTRLInterface.__init__(self, *udp_link_args) # Link with Transceiver instance we belong to self.trx = trx
def __init__(self, trx, *ctrl_if_args): CTRLInterface.__init__(self, *ctrl_if_args) print("[i] Init CTRL interface (%s)" % self.desc_link()) # Transceiver instance we belong to self.trx = trx
def __init__(self, remote_addr, remote_port, bind_addr, bind_port): CTRLInterface.__init__(self, remote_addr, remote_port, bind_addr, bind_port) log.info("Init CTRL interface for BB (%s)" % self.desc_link())
def __init__(self, trx, *udp_link_args): CTRLInterface.__init__(self, *udp_link_args) log.info("Init CTRL interface (%s)" % self.desc_link()) # Link with Transceiver instance we belong to self.trx = trx
def __init__(self, *udp_link_args): CTRLInterface.__init__(self, *udp_link_args) log.info("Init CTRL interface for BTS (%s)" % self.desc_link())