Enable IPv6 in proxy by environment variable

This commit is contained in:
Simon 2021-07-09 01:17:38 +01:00
parent 497fa3143a
commit 82f26f6c68
1 changed files with 5 additions and 1 deletions

View File

@ -4,7 +4,8 @@ from time import time
from resettabletimer import ResettableTimer
from dmr_utils3.utils import int_id
import random
import ipaddress
import ipaddress
import os
# Does anybody read this stuff? There's a PEP somewhere that says I should do this.
__author__ = 'Simon Adlem - G7RZU'
@ -187,6 +188,9 @@ if __name__ == '__main__':
#*******************
#If IPv6 is enabled by enivornment variable...
if ListenIP == '' and 'FDPROXY_IPV6' in os.environ and bool(os.environ['FDPROXY_IPV6']):
ListenIP = '::'
CONNTRACK = {}