diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2010-08-27 14:09:56 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2010-10-08 12:49:51 +0200 |
commit | 17b6dea08bd8c8484bc48dc67add236d2fe002b5 (patch) | |
tree | ef2480486fd983d21a1d78d200c06fa09bfbbc20 /qemu-config.c | |
parent | 9f04e09e36e430dd57c69c88b0532e9dc5061a47 (diff) |
spice: add config options for channel security.
This allows to enforce tls or plaintext usage for certain spice
channels.
[ v2: code style fixup ]
Diffstat (limited to 'qemu-config.c')
-rw-r--r-- | qemu-config.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/qemu-config.c b/qemu-config.c index 8b545b15f9..f52e50c377 100644 --- a/qemu-config.c +++ b/qemu-config.c @@ -392,6 +392,12 @@ QemuOptsList qemu_spice_opts = { .name = "tls-ciphers", .type = QEMU_OPT_STRING, },{ + .name = "tls-channel", + .type = QEMU_OPT_STRING, + },{ + .name = "plaintext-channel", + .type = QEMU_OPT_STRING, + },{ .name = "image-compression", .type = QEMU_OPT_STRING, },{ |