9ae3a8
From f40c437eed664b31984a21ec6bbed12c6b03dd0b Mon Sep 17 00:00:00 2001
9ae3a8
From: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
Date: Wed, 1 Jun 2016 13:16:08 +0200
9ae3a8
Subject: [PATCH 1/2] spice: do not require TCP ports
9ae3a8
MIME-Version: 1.0
9ae3a8
Content-Type: text/plain; charset=UTF-8
9ae3a8
Content-Transfer-Encoding: 8bit
9ae3a8
9ae3a8
RH-Author: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
Message-id: <1464786968-25518-2-git-send-email-kraxel@redhat.com>
9ae3a8
Patchwork-id: 70523
9ae3a8
O-Subject: [RHEL-7.3 qemu-kvm PATCH 1/1] spice: do not require TCP ports
9ae3a8
Bugzilla: 1336491
9ae3a8
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
9ae3a8
RH-Acked-by: Thomas Huth <thuth@redhat.com>
9ae3a8
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
9ae3a8
9ae3a8
From: Marc-André Lureau <marcandre.lureau@gmail.com>
9ae3a8
9ae3a8
It is possible to use Spice server without TCP port.  On local VM,
9ae3a8
qemu (and libvirt) can add new clients thanks to QMP add_client command.
9ae3a8
9ae3a8
Signed-off-by: Marc-André Lureau <marcandre.lureau@gmail.com>
9ae3a8
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
9ae3a8
(cherry picked from commit cf7856adefebe86e0cd50302d93b3045e3111690)
9ae3a8
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
---
9ae3a8
 ui/spice-core.c | 4 ----
9ae3a8
 1 file changed, 4 deletions(-)
9ae3a8
9ae3a8
diff --git a/ui/spice-core.c b/ui/spice-core.c
9ae3a8
index 141afd1..8d6e726 100644
9ae3a8
--- a/ui/spice-core.c
9ae3a8
+++ b/ui/spice-core.c
9ae3a8
@@ -648,10 +648,6 @@ void qemu_spice_init(void)
9ae3a8
     }
9ae3a8
     port = qemu_opt_get_number(opts, "port", 0);
9ae3a8
     tls_port = qemu_opt_get_number(opts, "tls-port", 0);
9ae3a8
-    if (!port && !tls_port) {
9ae3a8
-        error_report("neither port nor tls-port specified for spice");
9ae3a8
-        exit(1);
9ae3a8
-    }
9ae3a8
     if (port < 0 || port > 65535) {
9ae3a8
         error_report("spice port is out of range");
9ae3a8
         exit(1);
9ae3a8
-- 
9ae3a8
1.8.3.1
9ae3a8