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