]> git.proxmox.com Git - pve-qemu.git/blame - debian/patches/pve/0017-PVE-qapi-modify-spice-query.patch
merge: make file locking optional also on creation
[pve-qemu.git] / debian / patches / pve / 0017-PVE-qapi-modify-spice-query.patch
CommitLineData
23102ed6 1From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
95259824
WB
2From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3Date: Wed, 9 Dec 2015 14:32:11 +0100
53e83913 4Subject: [PATCH] PVE: qapi: modify spice query
95259824
WB
5
6Provide the last ticket in the SpiceInfo struct optionally.
7---
6838f038
WB
8 qapi/ui.json | 3 +++
9 ui/spice-core.c | 5 +++++
95259824
WB
10 2 files changed, 8 insertions(+)
11
6838f038 12diff --git a/qapi/ui.json b/qapi/ui.json
53e83913 13index 4ca91bb45a..636256dacc 100644
6838f038
WB
14--- a/qapi/ui.json
15+++ b/qapi/ui.json
53e83913 16@@ -211,11 +211,14 @@
95259824
WB
17 #
18 # @channels: a list of @SpiceChannel for each active spice channel
19 #
a544966d 20+# @ticket: The last ticket set with set_password
95259824
WB
21+#
22 # Since: 0.14.0
23 ##
24 { 'struct': 'SpiceInfo',
25 'data': {'enabled': 'bool', 'migrated': 'bool', '*host': 'str', '*port': 'int',
26 '*tls-port': 'int', '*auth': 'str', '*compiled-version': 'str',
27+ '*ticket': 'str',
53e83913
WB
28 'mouse-mode': 'SpiceQueryMouseMode', '*channels': ['SpiceChannel']},
29 'if': 'defined(CONFIG_SPICE)' }
95259824 30
95259824 31diff --git a/ui/spice-core.c b/ui/spice-core.c
53e83913 32index d327533c8f..74bd443462 100644
95259824
WB
33--- a/ui/spice-core.c
34+++ b/ui/spice-core.c
53e83913 35@@ -539,6 +539,11 @@ SpiceInfo *qmp_query_spice(Error **errp)
95259824
WB
36 micro = SPICE_SERVER_VERSION & 0xff;
37 info->compiled_version = g_strdup_printf("%d.%d.%d", major, minor, micro);
38
39+ if (auth_passwd) {
40+ info->has_ticket = true;
41+ info->ticket = g_strdup(auth_passwd);
42+ }
43+
44 if (port) {
45 info->has_port = true;
46 info->port = port;
47--
45169293 482.11.0
95259824 49