This commit is contained in:
KF7EEL 2021-06-05 16:46:20 -07:00
parent ff25a032c6
commit 3229360f70
2 changed files with 13 additions and 13 deletions

View File

@ -2885,7 +2885,7 @@ if __name__ == '__main__':
proxy_master_list.append(i)
# Start proxy as a thread (if enabled in config) for each set of MASTERs
for m in proxy_master_list:
if CONFIG['SYSTEMS'][m]['EXTERNAL_PROXY_SCRIPT'] == True:
if CONFIG['SYSTEMS'][m]['EXTERNAL_PROXY_SCRIPT'] == False:
proxy_thread = threading.Thread(target=hotspot_proxy, args=(CONFIG['SYSTEMS'][m]['EXTERNAL_PORT'],CONFIG['SYSTEMS'][m]['INTERNAL_PORT_START'],CONFIG['SYSTEMS'][m]['INTERNAL_PORT_STOP'],))
proxy_thread.daemon = True
proxy_thread.start()

View File

@ -135,12 +135,14 @@ def build_bridges():
proxy_list = []
unique = str('_' + str(random.randint(100, 999)))
for i in CONFIG['SYSTEMS']:
print(CONFIG['SYSTEMS'][i])
if CONFIG['SYSTEMS'][i]['ENABLED'] == True:
if CONFIG['SYSTEMS'][i]['MODE'] == 'PROXY':
proxy_list.append(i + unique)
for p in proxy_list:
for b in BRIDGES_TEMPLATE:
for s in BRIDGES_TEMPLATE[b]:
print(s)
if s['SYSTEM'] + unique in proxy_list:
n_systems = CONFIG['SYSTEMS'][i]['INTERNAL_PORT_STOP'] - CONFIG['SYSTEMS'][i]['INTERNAL_PORT_START']
n_count = 0
@ -149,8 +151,6 @@ def build_bridges():
n_count = n_count + 1
built_bridge[b].remove(s)
return built_bridge
BRIDGES = build_bridges()
############################################################################################################33
'''