From: Marc-André Lureau Date: Mon, 5 Mar 2012 17:22:26 +0000 (+0100) Subject: spice: set spice uuid and name X-Git-Tag: v1.1-rc0~218^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d0638b185c92a3fa8c82c2ef229312e9dbbd555c;p=thirdparty%2Fqemu.git spice: set spice uuid and name This allows a Spice client to identify a VM Signed-off-by: Gerd Hoffmann --- diff --git a/ui/spice-core.c b/ui/spice-core.c index c1091e1602a..80535b6e077 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);