diff options
author | Devaev Maxim <[email protected]> | 2020-03-26 06:26:56 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-03-26 13:17:07 +0300 |
commit | 8fd2a597bbbaa9efa544a0166d0e218d61db4005 (patch) | |
tree | e4217d55fcbcf1121c61108a1a0044673eb49b15 /kvmd/apps/vnc/__init__.py | |
parent | 94b779c5868a20f46c1d78c56fd19e01285a4e25 (diff) |
vncauth
Diffstat (limited to 'kvmd/apps/vnc/__init__.py')
-rw-r--r-- | kvmd/apps/vnc/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kvmd/apps/vnc/__init__.py b/kvmd/apps/vnc/__init__.py index 568a34d7..8d863bcc 100644 --- a/kvmd/apps/vnc/__init__.py +++ b/kvmd/apps/vnc/__init__.py @@ -27,6 +27,7 @@ from .. import init from .kvmd import KvmdClient from .streamer import StreamerClient +from .vncauth import VncAuthManager from .server import VncServer from .keysym import build_symmap @@ -43,6 +44,7 @@ def main(argv: Optional[List[str]]=None) -> None: VncServer( kvmd=KvmdClient(**config.kvmd._unpack()), streamer=StreamerClient(**config.streamer._unpack()), + vnc_auth_manager=VncAuthManager(**config.auth.vncauth._unpack()), desired_fps=config.desired_fps, symmap=build_symmap(config.keymap), **config.server._unpack(), |