vnc option to disabled tls

This commit is contained in:
Devaev Maxim
2020-07-31 05:27:41 +03:00
parent 756c4195fc
commit 5953604b6b
2 changed files with 11 additions and 13 deletions

View File

@@ -366,7 +366,7 @@ def _get_config_scheme() -> Dict:
},
"tls": {
"ciphers": Option("ALL:@SECLEVEL=0", type=valid_ssl_ciphers),
"ciphers": Option("ALL:@SECLEVEL=0", type=(lambda arg: valid_ssl_ciphers(arg) if arg else "")),
"timeout": Option(5.0, type=valid_float_f01),
},
},