check if ipv6 enabled before listen

This commit is contained in:
Maxim Devaev
2024-02-01 17:26:08 +02:00
parent 74d2d74667
commit 7141eebbf8
4 changed files with 55 additions and 3 deletions

View File

@@ -47,6 +47,7 @@ from ...clients.streamer import BaseStreamerClient
from ... import tools
from ... import aiotools
from ... import network
from .rfb import RfbClient
from .rfb.stream import rfb_format_remote
@@ -444,7 +445,7 @@ class VncServer: # pylint: disable=too-many-instance-attributes
vnc_auth_manager: VncAuthManager,
) -> None:
self.__host = host
self.__host = network.get_listen_host(host)
self.__port = port
self.__max_clients = max_clients