From 61013584a2607440ed76695f9de72243aec9d9d3 Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 30 Aug 2021 17:13:53 +0100 Subject: [PATCH] Add _MASTER_IP to XLXPEER --- config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/config.py b/config.py index e16d4d8..51b6c4e 100755 --- a/config.py +++ b/config.py @@ -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'),