X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=qapi-schema.json;h=dad4d4aed1b44dfe888820d1d1fa72dac75c863e;hb=cd153e2aa2f0ec39c04c2b732ebebfc6d4766986;hp=7ea32ed415eef4730109ae180c0d54401e1ca96c;hpb=548cbb36f415d6086f5252309ab5aa7634497ab5;p=qemu.git diff --git a/qapi-schema.json b/qapi-schema.json index 7ea32ed41..dad4d4aed 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3208,6 +3208,28 @@ ## { 'type': 'ChardevStdio', 'data': { '*signal' : 'bool' } } +## +# @ChardevSpiceChannel: +# +# Configuration info for spice vm channel chardevs. +# +# @type: kind of channel (for example vdagent). +# +# Since: 1.5 +## +{ 'type': 'ChardevSpiceChannel', 'data': { 'type' : 'str' } } + +## +# @ChardevSpicePort: +# +# Configuration info for spice port chardevs. +# +# @fqdn: name of the channel (see docs/spice-port-fqdn.txt) +# +# Since: 1.5 +## +{ 'type': 'ChardevSpicePort', 'data': { 'fqdn' : 'str' } } + ## # @ChardevBackend: # @@ -3228,7 +3250,9 @@ 'msmouse': 'ChardevDummy', 'braille': 'ChardevDummy', 'stdio' : 'ChardevStdio', - 'console': 'ChardevDummy' } } + 'console': 'ChardevDummy', + 'spicevmc' : 'ChardevSpiceChannel', + 'spiceport' : 'ChardevSpicePort' } } ## # @ChardevReturn: