diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2012-02-15 18:40:53 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-02-15 18:40:53 -0600 |
commit | cf5cfe0471eb3693401f390bc467413d14dce368 (patch) | |
tree | 1c4aedc91cd3adb5eae324c56092f82c4d6bee4f /qemu-options.hx | |
parent | 006c891fc9d4f044ad3f41b6e019442523b45a54 (diff) | |
parent | 7bc9318bfb68b2d773449a55d4fa800d0fdb0918 (diff) |
Merge remote-tracking branch 'kraxel/vnc.2' into staging
* kraxel/vnc.2:
vnc: lift modifier keys on client disconnect.
vnc: implement shared flag handling.
vnc: fix ctrl key in vnc terminal emulation
Fix vnc memory corruption with width = 1400
Diffstat (limited to 'qemu-options.hx')
-rw-r--r-- | qemu-options.hx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/qemu-options.hx b/qemu-options.hx index 42d22aebf9..51369c45b1 100644 --- a/qemu-options.hx +++ b/qemu-options.hx @@ -1095,6 +1095,19 @@ This can be really helpful to save bandwidth when playing videos. Disabling adaptive encodings allows to restore the original static behavior of encodings like Tight. +@item share=[allow-exclusive|force-shared|ignore] + +Set display sharing policy. 'allow-exclusive' allows clients to ask +for exclusive access. As suggested by the rfb spec this is +implemented by dropping other connections. Connecting multiple +clients in parallel requires all clients asking for a shared session +(vncviewer: -shared switch). This is the default. 'force-shared' +disables exclusive client access. Useful for shared desktop sessions, +where you don't want someone forgetting specify -shared disconnect +everybody else. 'ignore' completely ignores the shared flag and +allows everybody connect unconditionally. Doesn't conform to the rfb +spec but is traditional qemu behavior. + @end table ETEXI |