diff mbox

spice: do not require TCP ports

Message ID 1415709559-2011-1-git-send-email-marcandre.lureau@gmail.com
State New
Headers show

Commit Message

Marc-André Lureau Nov. 11, 2014, 12:39 p.m. UTC
It is possible to use Spice server without TCP port.  On local VM,
qemu (and libvirt) can add new clients thanks to QMP add_client command.

Signed-off-by: Marc-André Lureau <marcandre.lureau@gmail.com>
---
 ui/spice-core.c | 4 ----
 1 file changed, 4 deletions(-)

Comments

Gerd Hoffmann Nov. 12, 2014, 1:38 p.m. UTC | #1
On Di, 2014-11-11 at 13:39 +0100, Marc-André Lureau wrote:
> It is possible to use Spice server without TCP port.  On local VM,
> qemu (and libvirt) can add new clients thanks to QMP add_client command.

added to spice patch queue.

thanks,
  Gerd
diff mbox

Patch

diff --git a/ui/spice-core.c b/ui/spice-core.c
index 6467fa4..e8d4bae 100644
--- a/ui/spice-core.c
+++ b/ui/spice-core.c
@@ -661,10 +661,6 @@  void qemu_spice_init(void)
     }
     port = qemu_opt_get_number(opts, "port", 0);
     tls_port = qemu_opt_get_number(opts, "tls-port", 0);
-    if (!port && !tls_port) {
-        error_report("neither port nor tls-port specified for spice");
-        exit(1);
-    }
     if (port < 0 || port > 65535) {
         error_report("spice port is out of range");
         exit(1);