2017-09-08 10:33:44 +03:00
|
|
|
From d31b55269adad7b160a0942e7c887d3ec754f7d3 Mon Sep 17 00:00:00 2001
|
2017-04-05 11:49:19 +03:00
|
|
|
From: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
|
|
|
Date: Wed, 9 Dec 2015 14:32:11 +0100
|
2017-08-07 10:10:07 +03:00
|
|
|
Subject: [PATCH 08/28] qapi: modify spice query
|
2017-04-05 11:49:19 +03:00
|
|
|
|
|
|
|
Provide the last ticket in the SpiceInfo struct optionally.
|
|
|
|
---
|
|
|
|
qapi-schema.json | 3 +++
|
|
|
|
ui/spice-core.c | 5 +++++
|
|
|
|
2 files changed, 8 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/qapi-schema.json b/qapi-schema.json
|
2017-04-05 12:51:17 +03:00
|
|
|
index 51e150c6c1..1b14ff2476 100644
|
2017-04-05 11:49:19 +03:00
|
|
|
--- a/qapi-schema.json
|
|
|
|
+++ b/qapi-schema.json
|
2017-04-05 12:38:26 +03:00
|
|
|
@@ -1841,11 +1841,14 @@
|
2017-04-05 11:49:19 +03:00
|
|
|
#
|
|
|
|
# @channels: a list of @SpiceChannel for each active spice channel
|
|
|
|
#
|
2017-04-05 12:38:26 +03:00
|
|
|
+# @ticket: The last ticket set with set_password
|
2017-04-05 11:49:19 +03:00
|
|
|
+#
|
|
|
|
# Since: 0.14.0
|
|
|
|
##
|
|
|
|
{ 'struct': 'SpiceInfo',
|
|
|
|
'data': {'enabled': 'bool', 'migrated': 'bool', '*host': 'str', '*port': 'int',
|
|
|
|
'*tls-port': 'int', '*auth': 'str', '*compiled-version': 'str',
|
|
|
|
+ '*ticket': 'str',
|
|
|
|
'mouse-mode': 'SpiceQueryMouseMode', '*channels': ['SpiceChannel']} }
|
|
|
|
|
|
|
|
##
|
|
|
|
diff --git a/ui/spice-core.c b/ui/spice-core.c
|
2017-04-05 12:51:17 +03:00
|
|
|
index 804abc5c0f..4a417310d3 100644
|
2017-04-05 11:49:19 +03:00
|
|
|
--- a/ui/spice-core.c
|
|
|
|
+++ b/ui/spice-core.c
|
2017-04-05 12:38:26 +03:00
|
|
|
@@ -552,6 +552,11 @@ SpiceInfo *qmp_query_spice(Error **errp)
|
2017-04-05 11:49:19 +03:00
|
|
|
micro = SPICE_SERVER_VERSION & 0xff;
|
|
|
|
info->compiled_version = g_strdup_printf("%d.%d.%d", major, minor, micro);
|
|
|
|
|
|
|
|
+ if (auth_passwd) {
|
|
|
|
+ info->has_ticket = true;
|
|
|
|
+ info->ticket = g_strdup(auth_passwd);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
if (port) {
|
|
|
|
info->has_port = true;
|
|
|
|
info->port = port;
|
|
|
|
--
|
2017-04-05 12:51:17 +03:00
|
|
|
2.11.0
|
2017-04-05 11:49:19 +03:00
|
|
|
|