tune vnc socket

This commit is contained in:
Devaev Maxim
2020-07-23 10:38:45 +03:00
parent 37c2f9391c
commit d338bf219c
3 changed files with 35 additions and 3 deletions

View File

@@ -50,6 +50,8 @@ def main(argv: Optional[List[str]]=None) -> None:
port=config.server.port,
max_clients=config.server.max_clients,
no_delay=config.server.no_delay,
tls_ciphers=config.server.tls.ciphers,
tls_timeout=config.server.tls.timeout,
@@ -65,4 +67,6 @@ def main(argv: Optional[List[str]]=None) -> None:
**config.streamer._unpack(),
),
vnc_auth_manager=VncAuthManager(**config.auth.vncauth._unpack()),
**config.server.keepalive._unpack(),
).run()