]> git.proxmox.com Git - mirror_qemu.git/blobdiff - qapi/common.json
-machine vmport=auto: Fix handling of VMWare ioport emulation for xen
[mirror_qemu.git] / qapi / common.json
index 4e9a21f2f6d9d0fad1047a218c318d36acb1a530..63ef3b47246eea73674675a6f1827e6fc2c2edbf 100644 (file)
 ##
 { 'command': 'query-commands', 'returns': ['CommandInfo'] }
 
+##
+# @OnOffAuto
+#
+# An enumeration of three options: on, off, and auto
+#
+# @auto: QEMU selects the value between on and off
+#
+# @on: Enabled
+#
+# @off: Disabled
+#
+# Since: 2.2
+##
+{ 'enum': 'OnOffAuto',
+  'data': [ 'auto', 'on', 'off' ] }