diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2010-08-30 16:36:53 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2010-10-08 12:49:51 +0200 |
commit | 84a23f251fe85768338434040257bb96cf555de8 (patch) | |
tree | 79a936d6143b5e876d73513eaa649baf16d111e6 /qemu-config.c | |
parent | 333b0eebcc8941b8453e837293eaa1191e967c25 (diff) |
spice: add misc config options
This patch adds a few more options to tweak spice server behavior.
The documentation update chunk has the details ;)
Diffstat (limited to 'qemu-config.c')
-rw-r--r-- | qemu-config.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/qemu-config.c b/qemu-config.c index 5a62ae131d..52f18bef31 100644 --- a/qemu-config.c +++ b/qemu-config.c @@ -415,6 +415,15 @@ QemuOptsList qemu_spice_opts = { },{ .name = "zlib-glz-wan-compression", .type = QEMU_OPT_STRING, + },{ + .name = "streaming-video", + .type = QEMU_OPT_STRING, + },{ + .name = "agent-mouse", + .type = QEMU_OPT_BOOL, + },{ + .name = "playback-compression", + .type = QEMU_OPT_BOOL, }, { /* end if list */ } }, |