From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:59380) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S4bcO-00081j-MD for qemu-devel@nongnu.org; Mon, 05 Mar 2012 12:22:46 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S4bcI-0007ZU-Cz for qemu-devel@nongnu.org; Mon, 05 Mar 2012 12:22:40 -0500 Received: from mail-ey0-f173.google.com ([209.85.215.173]:36607) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S4bcI-0007Z6-4E for qemu-devel@nongnu.org; Mon, 05 Mar 2012 12:22:34 -0500 Received: by eaaf11 with SMTP id f11so856552eaa.4 for ; Mon, 05 Mar 2012 09:22:31 -0800 (PST) From: "=?UTF-8?q?Marc-Andr=C3=A9=20Lureau?=" Date: Mon, 5 Mar 2012 18:22:26 +0100 Message-Id: <1330968146-6353-1-git-send-email-marcandre.lureau@redhat.com> In-Reply-To: <4F50D4D7.8010602@redhat.com> References: <4F50D4D7.8010602@redhat.com> Subject: [Qemu-devel] [PATCH] spice: set spice uuid and name List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= This allows a Spice client to identify a VM --- ui/spice-core.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/ui/spice-core.c b/ui/spice-core.c index c1091e1..80535b6 100644 --- a/ui/spice-core.c +++ b/ui/spice-core.c @@ -19,6 +19,7 @@ #include #include +#include "sysemu.h" #include "qemu-common.h" #include "qemu-spice.h" @@ -688,6 +689,11 @@ void qemu_spice_init(void) qemu_opt_foreach(opts, add_channel, &tls_port, 0); +#if SPICE_SERVER_VERSION >= 0x000a02 /* 0.10.2 */ + spice_server_set_name(spice_server, qemu_name); + spice_server_set_uuid(spice_server, qemu_uuid); +#endif + if (0 != spice_server_init(spice_server, &core_interface)) { error_report("failed to initialize spice server"); exit(1); -- 1.7.7.6