summaryrefslogtreecommitdiff
path: root/kvmd/apps/vnc/__init__.py
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2020-07-23 10:38:45 +0300
committerDevaev Maxim <[email protected]>2020-07-23 10:38:45 +0300
commitd338bf219c22020e6791a30e210299138d45926c (patch)
tree312818c6162095890200a35aef4a4a43e3a4a4e3 /kvmd/apps/vnc/__init__.py
parent37c2f9391c4129114702f653270049d0ad67bc90 (diff)
tune vnc socket
Diffstat (limited to 'kvmd/apps/vnc/__init__.py')
-rw-r--r--kvmd/apps/vnc/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/kvmd/apps/vnc/__init__.py b/kvmd/apps/vnc/__init__.py
index aaf67740..923ac39a 100644
--- a/kvmd/apps/vnc/__init__.py
+++ b/kvmd/apps/vnc/__init__.py
@@ -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()