mirror of
https://github.com/ShaYmez/hblink3.git
synced 2024-11-24 16:58:42 -05:00
Fixed unecessary bytes to int conversion of sequence field -- used for loss reporting
This commit is contained in:
parent
3878c82513
commit
31c23ae7a0
@ -113,7 +113,6 @@ class bridgeallSYSTEM(HBSYSTEM):
|
|||||||
pkt_time = time()
|
pkt_time = time()
|
||||||
dmrpkt = _data[20:53]
|
dmrpkt = _data[20:53]
|
||||||
_bits = _data[15]
|
_bits = _data[15]
|
||||||
seq = int.from_bytes(_seq, byteorder='big')
|
|
||||||
|
|
||||||
if _call_type == 'group':
|
if _call_type == 'group':
|
||||||
|
|
||||||
@ -123,14 +122,14 @@ class bridgeallSYSTEM(HBSYSTEM):
|
|||||||
if new_stream:
|
if new_stream:
|
||||||
self.STATUS[_slot]['RX_START'] = pkt_time
|
self.STATUS[_slot]['RX_START'] = pkt_time
|
||||||
self.STATUS[_slot]['RX_LOSS'] = 0
|
self.STATUS[_slot]['RX_LOSS'] = 0
|
||||||
self.STATUS[_slot]['RX_SEQ'] = seq
|
self.STATUS[_slot]['RX_SEQ'] = _seq
|
||||||
logger.info('(%s) *CALL START* STREAM ID: %s SUB: %s (%s) PEER: %s (%s) TGID %s (%s), TS %s', \
|
logger.info('(%s) *CALL START* STREAM ID: %s SUB: %s (%s) PEER: %s (%s) TGID %s (%s), TS %s', \
|
||||||
self._system, int_id(_stream_id), get_alias(_rf_src, subscriber_ids), int_id(_rf_src), get_alias(_peer_id, peer_ids), int_id(_peer_id), get_alias(_dst_id, talkgroup_ids), int_id(_dst_id), _slot)
|
self._system, int_id(_stream_id), get_alias(_rf_src, subscriber_ids), int_id(_rf_src), get_alias(_peer_id, peer_ids), int_id(_peer_id), get_alias(_dst_id, talkgroup_ids), int_id(_dst_id), _slot)
|
||||||
else:
|
else:
|
||||||
# This could be much better, it will have errors during roll-over
|
# This could be much better, it will have errors during roll-over
|
||||||
if seq > (self.STATUS[_slot]['RX_SEQ'] + 1):
|
if _seq > (self.STATUS[_slot]['RX_SEQ'] + 1):
|
||||||
#print(seq, self.STATUS[_slot]['RX_SEQ'])
|
#print(_seq, self.STATUS[_slot]['RX_SEQ'])
|
||||||
self.STATUS[_slot]['RX_LOSS'] += seq - (self.STATUS[_slot]['RX_SEQ'] + 1)
|
self.STATUS[_slot]['RX_LOSS'] += _seq - (self.STATUS[_slot]['RX_SEQ'] + 1)
|
||||||
|
|
||||||
# Final actions - Is this a voice terminator?
|
# Final actions - Is this a voice terminator?
|
||||||
if (_frame_type == const.HBPF_DATA_SYNC) and (_dtype_vseq == const.HBPF_SLT_VTERM) and (self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM):
|
if (_frame_type == const.HBPF_DATA_SYNC) and (_dtype_vseq == const.HBPF_SLT_VTERM) and (self.STATUS[_slot]['RX_TYPE'] != const.HBPF_SLT_VTERM):
|
||||||
@ -223,7 +222,7 @@ class bridgeallSYSTEM(HBSYSTEM):
|
|||||||
|
|
||||||
# Mark status variables for use later
|
# Mark status variables for use later
|
||||||
self.STATUS[_slot]['RX_RFS'] = _rf_src
|
self.STATUS[_slot]['RX_RFS'] = _rf_src
|
||||||
self.STATUS[_slot]['RX_SEQ'] = seq
|
self.STATUS[_slot]['RX_SEQ'] = _seq
|
||||||
self.STATUS[_slot]['RX_TYPE'] = _dtype_vseq
|
self.STATUS[_slot]['RX_TYPE'] = _dtype_vseq
|
||||||
self.STATUS[_slot]['RX_TGID'] = _dst_id
|
self.STATUS[_slot]['RX_TGID'] = _dst_id
|
||||||
self.STATUS[_slot]['RX_TIME'] = pkt_time
|
self.STATUS[_slot]['RX_TIME'] = pkt_time
|
||||||
|
Loading…
Reference in New Issue
Block a user