diff options
author | Marc-André Lureau <marcandre.lureau@gmail.com> | 2014-11-11 13:39:19 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2014-12-16 14:15:29 +0100 |
commit | cf7856adefebe86e0cd50302d93b3045e3111690 (patch) | |
tree | 85e3a56ddd1ea9d5e0af05381e97aecf38f6f63b /ui/spice-core.c | |
parent | 555e72f2d02125766601db52c6380357b3820fcb (diff) | |
download | hqemu-cf7856adefebe86e0cd50302d93b3045e3111690.zip hqemu-cf7856adefebe86e0cd50302d93b3045e3111690.tar.gz |
spice: do not require TCP ports
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>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui/spice-core.c')
-rw-r--r-- | ui/spice-core.c | 4 |
1 files changed, 0 insertions, 4 deletions
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); |