Restyled by yapf

This commit is contained in:
Restyled.io 2021-05-19 11:35:29 +00:00
parent d1c34ff101
commit 9f92b336fe
1 changed files with 7 additions and 8 deletions

View File

@ -18,9 +18,11 @@ class Zeroconf(Closeable):
def __init__(self):
try:
self.__BROADCAST4 = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
self.__BROADCAST4 = socket.socket(socket.AF_INET,
socket.SOCK_DGRAM)
self.__BROADCAST4.connect(("224.0.0.251", 5353))
self.__BROADCAST6 = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM)
self.__BROADCAST6 = socket.socket(socket.AF_INET6,
socket.SOCK_DGRAM)
self.__BROADCAST6.connect(("FF02::FB", 5353))
except Exception as e:
pass
@ -31,12 +33,9 @@ class Zeroconf(Closeable):
def get_or_create_local_host_name() -> str:
host = socket.gethostname()
if host == "localhost":
host = (
base64.b64encode(
random.randint(-9223372036854775808, 9223372036854775807)
).decode()
+ ".local"
)
host = (base64.b64encode(
random.randint(-9223372036854775808,
9223372036854775807)).decode() + ".local")
return host
def set_use_ipv4(self, ipv4: bool) -> Zeroconf: