Fixed bug when IPv6 is disabled via GRUB.

This commit is contained in:
lgandx 2024-01-06 12:44:38 -03:00
commit fa297c8a16
6 changed files with 68 additions and 29 deletions

View file

@ -168,6 +168,9 @@ class Settings:
self.ExternalIP6 = options.ExternalIP6
self.Quiet_Mode = options.Quiet
#Do we have IPv6 for real?
self.IPv6 = utils.Probe_IPv6_socket()
if self.Interface == "ALL":
self.Bind_To_ALL = True
else: