diff --git a/README.md b/README.md index 3f44175..9adda44 100644 --- a/README.md +++ b/README.md @@ -119,16 +119,16 @@ PEER LIST RESPONSE: Byte 2 - 0x00 = Unknown Byte 3 - BIT FLAGS: x... .... = CBSK Message - .x.. .... = Unknwon - default to 0 - ..x. .... = 3rd Party Application? (set by c-Bridge, SMARTPTT) + .x.. .... = Repeater Call Monitoring + ..x. .... = 3rd Party "Console" Application ...x xxxx = Unknown - default to 0 Byte 4 = BIT FLAGS: - x... .... = XCMP/XNL - default to 0 - .x.. .... = XCMP/XNL - default to 0 - ..x. .... = XCMP/XNL - default to 0 + x... .... = XNL Connected (1=true) + .x.. .... = XNL Master Device + ..x. .... = XNL Slave Device ...x .... = Set if packets are authenticated - .... x... = Set if voice calls are supported - .... .x.. = Set if data calls are supported + .... x... = Set if data calls are supported + .... .x.. = Set if voice calls are supported .... ..x. = Unknown - default to 0 .... ...x = Set if master diff --git a/ipsc.py b/ipsc.py index 5c04d42..66c8eea 100644 --- a/ipsc.py +++ b/ipsc.py @@ -178,12 +178,17 @@ class IPSC(DatagramProtocol): self.transport.write(reg_packet, (self._config['MASTER']['IP'], self._config['MASTER']['PORT'])) logger.info("->> Sending Registration to Master:%s:%sFrom:%s\n", self._config['MASTER']['IP'], self._config['MASTER']['PORT'], binascii.b2a_hex(self._config['LOCAL']['RADIO_ID'])) - elif (_master_connected == 1): - peer_list_req_packet = hashed_packet(self._config['LOCAL']['AUTH_KEY'], self.PEER_LIST_REQ_PKT) - self.transport.write(peer_list_req_packet, (self._config['MASTER']['IP'], self._config['MASTER']['PORT'])) - logger.info("->> Peer List Reqested from Master:%s:%s\n", self._config['MASTER']['IP'], self._config['MASTER']['PORT']) + elif (_master_connected in (1,2)): + if (_master_connected == 1): + peer_list_req_packet = hashed_packet(self._config['LOCAL']['AUTH_KEY'], self.PEER_LIST_REQ_PKT) + self.transport.write(peer_list_req_packet, (self._config['MASTER']['IP'], self._config['MASTER']['PORT'])) + logger.info("->> Peer List Reqested from Master:%s:%s\n", self._config['MASTER']['IP'], self._config['MASTER']['PORT']) - elif (_master_connected == 1 or 2): + master_alive_packet = hashed_packet(self._config['LOCAL']['AUTH_KEY'], self.MASTER_ALIVE_PKT) + self.transport.write(master_alive_packet, (self._config['MASTER']['IP'], self._config['MASTER']['PORT'])) + logger.info("->> Master Keep Alive Sent To:%s:%s\n", self._config['MASTER']['IP'], self._config['MASTER']['PORT']) + + elif (_master_connected == 2): master_alive_packet = hashed_packet(self._config['LOCAL']['AUTH_KEY'], self.MASTER_ALIVE_PKT) self.transport.write(master_alive_packet, (self._config['MASTER']['IP'], self._config['MASTER']['PORT'])) logger.info("->> Master Keep Alive Sent To:%s:%s\n", self._config['MASTER']['IP'], self._config['MASTER']['PORT'])