diff options
Diffstat (limited to 'qemu-config.c')
-rw-r--r-- | qemu-config.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/qemu-config.c b/qemu-config.c index 6052a289e9..32917cbda4 100644 --- a/qemu-config.c +++ b/qemu-config.c @@ -354,6 +354,24 @@ static QemuOptsList qemu_cpudef_opts = { }, }; +QemuOptsList qemu_spice_opts = { + .name = "spice", + .head = QTAILQ_HEAD_INITIALIZER(qemu_spice_opts.head), + .desc = { + { + .name = "port", + .type = QEMU_OPT_NUMBER, + },{ + .name = "password", + .type = QEMU_OPT_STRING, + },{ + .name = "disable-ticketing", + .type = QEMU_OPT_BOOL, + }, + { /* end if list */ } + }, +}; + static QemuOptsList *vm_config_groups[32] = { &qemu_drive_opts, &qemu_chardev_opts, |