From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42721) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YR3fP-0006wH-P9 for qemu-devel@nongnu.org; Thu, 26 Feb 2015 14:00:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YR3fK-0007Yj-6p for qemu-devel@nongnu.org; Thu, 26 Feb 2015 14:00:11 -0500 From: Cole Robinson Date: Thu, 26 Feb 2015 13:59:58 -0500 Message-Id: Subject: [Qemu-devel] [PATCH] qapi-schema: Fix SpiceChannel docs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-trivial , Cole Robinson The value is called channel-type, not connection-type Signed-off-by: Cole Robinson --- qapi-schema.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qapi-schema.json b/qapi-schema.json index e16f8eb..8141f71 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -860,31 +860,31 @@ # Since: 2.1 ## { 'type': 'SpiceServerInfo', 'base': 'SpiceBasicInfo', 'data': { '*auth': 'str' } } ## # @SpiceChannel # # Information about a SPICE client channel. # # @connection-id: SPICE connection id number. All channels with the same id # belong to the same SPICE session. # -# @connection-type: SPICE channel type number. "1" is the main control -# channel, filter for this one if you want to track spice -# sessions only +# @channel-type: SPICE channel type number. "1" is the main control +# channel, filter for this one if you want to track spice +# sessions only # # @channel-id: SPICE channel ID number. Usually "0", might be different when # multiple channels of the same type exist, such as multiple # display channels in a multihead setup # # @tls: true if the channel is encrypted, false otherwise. # # Since: 0.14.0 ## { 'type': 'SpiceChannel', 'base': 'SpiceBasicInfo', 'data': {'connection-id': 'int', 'channel-type': 'int', 'channel-id': 'int', 'tls': 'bool'} } -- 2.1.0