diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-02-21 16:16:42 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-03-13 10:27:45 +0100 |
commit | edb2fb3cc8b85ab956f366fc036ac12853984dae (patch) | |
tree | 33245f6a4ed6e6250504c836e888172c096dd83a /qapi-schema.json | |
parent | 2c5f488293c7d0cd095635c74157c2526e2c4947 (diff) |
chardev: add mux chardev support to qapi
This adds mux chardev support to the qapi and also makes the qapi-based
chardev creation path handle the "mux=on" option correctly.
Diffstat (limited to 'qapi-schema.json')
-rw-r--r-- | qapi-schema.json | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index 4494e53693..4ad92b07f1 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3185,6 +3185,17 @@ '*telnet' : 'bool' } } ## +# @ChardevMux: +# +# Configuration info for mux chardevs. +# +# @chardev: name of the base chardev. +# +# Since: 1.5 +## +{ 'type': 'ChardevMux', 'data': { 'chardev' : 'str' } } + +## # @ChardevBackend: # # Configuration info for the new chardev backend. @@ -3198,7 +3209,8 @@ 'parallel': 'ChardevHostdev', 'socket' : 'ChardevSocket', 'pty' : 'ChardevDummy', - 'null' : 'ChardevDummy' } } + 'null' : 'ChardevDummy', + 'mux' : 'ChardevMux' } } ## # @ChardevReturn: |