Compare commits

..

No commits in common. "b381edbcac086344fc07bd2cbfc52160c1a2efa1" and "c44a0fbdd02433832fd20b998b69a14eb1da9b0b" have entirely different histories.

5 changed files with 3 additions and 9 deletions

View File

@ -9,7 +9,7 @@ A voluntary registrty for HBlink systems with public access has been created at
---
## PROJECT: Open Source HomeBrew Repeater Protocol Client/Master. ##
## PROJECT: Open Source HomeBrew Repeater Proctol Client/Master. ##
**UPDATES:**

View File

@ -687,7 +687,7 @@ class routerHBP(HBSYSTEM):
if (_system['SYSTEM'] == self._system and _system['TGID'] == _dst_id and _system['TS'] == _slot and _system['ACTIVE'] == True):
for _target in BRIDGES[_bridge]:
if _target['SYSTEM'] != self._system or (_target['SYSTEM'] == self._system and _target['TS'] != _slot):
if _target['SYSTEM'] != self._system:
if _target['ACTIVE']:
_target_status = systems[_target['SYSTEM']].STATUS
_target_system = self._CONFIG['SYSTEMS'][_target['SYSTEM']]

View File

@ -68,8 +68,6 @@ RPTC = b'RPTC'
RPTP = b'RPTP'
RPTA = b'RPTA'
RPTO = b'RPTO'
RPTS = b'RPTS'
RPTSBKN = b'RPTSBKN'
# Higheset peer ID permitted by HBP

View File

@ -1,4 +1,4 @@
version: '2.4'
version: '3.3'
services:
hblink3:
container_name: hblink

View File

@ -695,10 +695,6 @@ class HBSYSTEM(DatagramProtocol):
self._stats['CONNECTION'] = 'NO'
logger.info('(%s) MSTCL Recieved', self._system)
elif _command == RPTS:
if _data[:7] == RPTSBKN:
logger.info('(%s) Received Site Beacon with Repeater ID: %s', self._system, int_id(_data[7:]))
else:
logger.error('(%s) Received an invalid command in packet: %s', self._system, ahex(_data))