Add _MASTER_IP to XLXPEER

This commit is contained in:
Simon 2021-08-30 17:13:53 +01:00
parent a8633090e4
commit 61013584a2
1 changed files with 1 additions and 0 deletions

View File

@ -252,6 +252,7 @@ def build_config(_config_file):
'PORT': config.getint(section, 'PORT'),
'MASTER_SOCKADDR': (gethostbyname(config.get(section, 'MASTER_IP')), config.getint(section, 'MASTER_PORT')),
'MASTER_IP': gethostbyname(config.get(section, 'MASTER_IP')),
'_MASTER_IP': config.get(section, 'MASTER_IP'),
'MASTER_PORT': config.getint(section, 'MASTER_PORT'),
'PASSPHRASE': bytes(config.get(section, 'PASSPHRASE'), 'utf-8'),
'CALLSIGN': bytes(config.get(section, 'CALLSIGN').ljust(8)[:8], 'utf-8'),