From 4781321c2c2d09edae9271931a33387e542e39c7 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Sun, 31 Aug 2014 18:33:45 -0500 Subject: [PATCH] Restore from a test --- bridge.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bridge.py b/bridge.py index 523709a..3e3205b 100755 --- a/bridge.py +++ b/bridge.py @@ -150,7 +150,7 @@ if BRIDGES: if rule['SRC_GROUP'] == _dst_group and rule['SRC_TS'] == _ts and (self.BRIDGE == True or networks[_target].BRIDGE == True): _tmp_data = _data # Re-Write the IPSC SRC to match the target network's ID - #_tmp_data = _tmp_data.replace(_peerid, NETWORK[_target]['LOCAL']['RADIO_ID']) + _tmp_data = _tmp_data.replace(_peerid, NETWORK[_target]['LOCAL']['RADIO_ID']) # Re-Write the destination Group ID _tmp_data = _tmp_data.replace(_dst_group, rule['DST_GROUP']) @@ -188,7 +188,7 @@ else: _tmp_data = _data _target = rule['DST_NET'] # Re-Write the IPSC SRC to match the target network's ID - #_tmp_data = _tmp_data.replace(_peerid, NETWORK[_target]['LOCAL']['RADIO_ID']) + _tmp_data = _tmp_data.replace(_peerid, NETWORK[_target]['LOCAL']['RADIO_ID']) # Re-Write the destination Group ID _tmp_data = _tmp_data.replace(_dst_group, rule['DST_GROUP'])