diff mbox

spice: set spice uuid and name

Message ID 1330968146-6353-1-git-send-email-marcandre.lureau@redhat.com
State New
Headers show

Commit Message

Marc-André Lureau March 5, 2012, 5:22 p.m. UTC
This allows a Spice client to identify a VM
---
 ui/spice-core.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

Comments

Alon Levy March 5, 2012, 6 p.m. UTC | #1
On Mon, Mar 05, 2012 at 06:22:26PM +0100, Marc-André Lureau wrote:
> This allows a Spice client to identify a VM

Reviewed-by: Alon Levy <alevy@redhat.com>

> ---
>  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 <spice-experimental.h>
>  
>  #include <netdb.h>
> +#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
> 
>
Gerd Hoffmann March 6, 2012, 8:20 a.m. UTC | #2
On 03/05/12 18:22, Marc-André Lureau wrote:
> This allows a Spice client to identify a VM

Patch added to spice patch queue.

thanks,
  Gerd
diff mbox

Patch

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 <spice-experimental.h>
 
 #include <netdb.h>
+#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);