From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60806) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UzYXO-0004hq-UL for qemu-devel@nongnu.org; Wed, 17 Jul 2013 16:41:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UzYXO-0000rL-0W for qemu-devel@nongnu.org; Wed, 17 Jul 2013 16:41:26 -0400 Received: from mx1.redhat.com ([209.132.183.28]:30184) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UzYXN-0000rB-Q2 for qemu-devel@nongnu.org; Wed, 17 Jul 2013 16:41:25 -0400 From: Luiz Capitulino Date: Wed, 17 Jul 2013 16:41:19 -0400 Message-Id: <1374093679-29213-3-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1374093679-29213-1-git-send-email-lcapitulino@redhat.com> References: <1374093679-29213-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PULL 2/2] qmp: update send-key document List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com From: Amos Kong commit 9f328977 changes qmp_send_key() to accept key codes in hex, but the document wasn't updated. The items of keys list is union now, not enum. Signed-off-by: Amos Kong Reviewed-by: Eric Blake Signed-off-by: Luiz Capitulino --- qmp-commands.hx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/qmp-commands.hx b/qmp-commands.hx index e075df4..b8e7758 100644 --- a/qmp-commands.hx +++ b/qmp-commands.hx @@ -346,7 +346,8 @@ Send keys to VM. Arguments: keys array: - - "key": key sequence (a json-array of key enum values) + - "key": key sequence (a json-array of key union values, + union can be number or qcode enum) - hold-time: time to delay key up events, milliseconds. Defaults to 100 (json-int, optional) @@ -354,7 +355,9 @@ keys array: Example: -> { "execute": "send-key", - "arguments": { 'keys': [ 'ctrl', 'alt', 'delete' ] } } + "arguments": { "keys": [ { "type": "qcode", "data": "ctrl" }, + { "type": "qcode", "data": "alt" }, + { "type": "qcode", "data": "delete" } ] } } <- { "return": {} } EQMP -- 1.8.1.4