Only ignore openbridge (again)
This commit is contained in:
parent
7ed54e09ae
commit
f4c17e9540
@ -790,9 +790,11 @@ class routerOBP(OPENBRIDGE):
|
||||
logger.debug("(DEDUP) Skipping system %s TS: %s",_target['SYSTEM'],_target['TS'])
|
||||
continue
|
||||
if _target_system['MODE'] == 'OPENBRIDGE':
|
||||
print(int_id(_target['TGID']))
|
||||
if _noOBP == True:
|
||||
continue
|
||||
#We want to ignore this system and TS combination if it's called again for this packet
|
||||
_sysIgnore.append((_target['SYSTEM'],_target['TS']))
|
||||
|
||||
# Is this a new call stream on the target?
|
||||
if (_stream_id not in _target_status):
|
||||
# This is a new call stream on the target
|
||||
@ -926,9 +928,6 @@ class routerOBP(OPENBRIDGE):
|
||||
systems[_target['SYSTEM']].send_system(_tmp_data)
|
||||
#logger.debug('(%s) Packet routed by bridge: %s to system: %s TS: %s, TGID: %s', self._system, _bridge, _target['SYSTEM'], _target['TS'], int_id(_target['TGID']))
|
||||
#Ignore this system and TS pair if it's called again on this packet
|
||||
#We want to ignore this system and TS combination if it's called again for this packet
|
||||
if _target_system['MODE'] == 'OPENBRIDGE':
|
||||
_sysIgnore.append((_target['SYSTEM'],_target['TS']))
|
||||
return(_sysIgnore)
|
||||
|
||||
|
||||
@ -1065,6 +1064,9 @@ class routerHBP(HBSYSTEM):
|
||||
if _target_system['MODE'] == 'OPENBRIDGE':
|
||||
if _noOBP == True:
|
||||
continue
|
||||
#We want to ignore this system and TS combination if it's called again for this packet
|
||||
_sysIgnore.append((_target['SYSTEM'],_target['TS']))
|
||||
|
||||
# Is this a new call stream on the target?
|
||||
if (_stream_id not in _target_status):
|
||||
# This is a new call stream on the target
|
||||
@ -1192,9 +1194,7 @@ class routerHBP(HBSYSTEM):
|
||||
|
||||
# Transmit the packet to the destination system
|
||||
systems[_target['SYSTEM']].send_system(_tmp_data)
|
||||
#logger.debug('(%s) Packet routed by bridge: %s to system: %s TS: %s, TGID: %s', self._system, _bridge, _target['SYSTEM'], _target['TS'], int_id(_target['TGID']))
|
||||
if _target_system['MODE'] == 'OPENBRIDGE':
|
||||
_sysIgnore.append((_target['SYSTEM'],_target['TS']))
|
||||
#logger.debug('(%s) Packet routed by bridge: %s to system: %s TS: %s, TGID: %s', self._system, _bridge, _target['SYSTEM'], _target['TS'], int_id(_target['TGID']))
|
||||
return _sysIgnore
|
||||
|
||||
def dmrd_received(self, _peer_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data):
|
||||
|
Loading…
Reference in New Issue
Block a user