mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 12:09:58 +00:00
spice: fix "info spice"
In case no listening address was specified, "info spice" reports "0.0.0.0" as address. Which is incorrect in case spice is listening on ipv6. Replace it by a wildcard "*" to indicate it is not limited to a specific address. Note: Being more specific is not possible without extending the spice-server api. The socket is handled by spice-server not qemu, so qemu can't easily figure the actual socket address. Reported-by: David Jaša <djasa@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
ff788b6fe6
commit
4f60af9ac0
@ -532,7 +532,7 @@ SpiceInfo *qmp_query_spice(Error **errp)
|
|||||||
info->auth = g_strdup(auth);
|
info->auth = g_strdup(auth);
|
||||||
|
|
||||||
info->has_host = true;
|
info->has_host = true;
|
||||||
info->host = g_strdup(addr ? addr : "0.0.0.0");
|
info->host = g_strdup(addr ? addr : "*");
|
||||||
|
|
||||||
info->has_compiled_version = true;
|
info->has_compiled_version = true;
|
||||||
major = (SPICE_SERVER_VERSION & 0xff0000) >> 16;
|
major = (SPICE_SERVER_VERSION & 0xff0000) >> 16;
|
||||||
|
Loading…
Reference in New Issue
Block a user