* [Qemu-devel] [PATCH v4] ui/spice-core: report compiled-version in info spice/query-spice
@ 2011-08-10 15:21 Alon Levy
2011-08-10 15:24 ` Alon Levy
0 siblings, 1 reply; 2+ messages in thread
From: Alon Levy @ 2011-08-10 15:21 UTC (permalink / raw)
To: qemu-devel; +Cc: kraxel
Signed-off-by: Alon Levy <alevy@redhat.com>
---
ui/spice-core.c | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/ui/spice-core.c b/ui/spice-core.c
index 3d77c01..b9d1cd4 100644
--- a/ui/spice-core.c
+++ b/ui/spice-core.c
@@ -372,6 +372,8 @@ void do_info_spice_print(Monitor *mon, const QObject *data)
monitor_printf(mon, " address: %s:%d [tls]\n", host, port);
}
monitor_printf(mon, " auth: %s\n", qdict_get_str(server, "auth"));
+ monitor_printf(mon, " compiled: %s\n",
+ qdict_get_str(server, "compiled-version"));
channels = qdict_get_qlist(server, "channels");
if (qlist_empty(channels)) {
@@ -388,6 +390,7 @@ void do_info_spice(Monitor *mon, QObject **ret_data)
QList *clist;
const char *addr;
int port, tls_port;
+ char version_string[20]; // 12 = |255.255.255\0| is the max
if (!spice_server) {
*ret_data = qobject_from_jsonf("{ 'enabled': false }");
@@ -403,6 +406,11 @@ void do_info_spice(Monitor *mon, QObject **ret_data)
qdict_put(server, "enabled", qbool_from_int(true));
qdict_put(server, "auth", qstring_from_str(auth));
qdict_put(server, "host", qstring_from_str(addr ? addr : "0.0.0.0"));
+ sprintf(version_string, "%d.%d.%d",
+ (SPICE_SERVER_VERSION & 0xff0000) >> 16,
+ (SPICE_SERVER_VERSION & 0xff00) >> 8,
+ SPICE_SERVER_VERSION & 0xff);
+ qdict_put(server, "compiled-version", qstring_from_str(version_string));
if (port) {
qdict_put(server, "port", qint_from_int(port));
}
--
1.7.6
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH v4] ui/spice-core: report compiled-version in info spice/query-spice
2011-08-10 15:21 [Qemu-devel] [PATCH v4] ui/spice-core: report compiled-version in info spice/query-spice Alon Levy
@ 2011-08-10 15:24 ` Alon Levy
0 siblings, 0 replies; 2+ messages in thread
From: Alon Levy @ 2011-08-10 15:24 UTC (permalink / raw)
To: qemu-devel; +Cc: kraxel
On Wed, Aug 10, 2011 at 06:21:16PM +0300, Alon Levy wrote:
> Signed-off-by: Alon Levy <alevy@redhat.com>
NACK, next version uses snprintf.
> ---
> ui/spice-core.c | 8 ++++++++
> 1 files changed, 8 insertions(+), 0 deletions(-)
>
> diff --git a/ui/spice-core.c b/ui/spice-core.c
> index 3d77c01..b9d1cd4 100644
> --- a/ui/spice-core.c
> +++ b/ui/spice-core.c
> @@ -372,6 +372,8 @@ void do_info_spice_print(Monitor *mon, const QObject *data)
> monitor_printf(mon, " address: %s:%d [tls]\n", host, port);
> }
> monitor_printf(mon, " auth: %s\n", qdict_get_str(server, "auth"));
> + monitor_printf(mon, " compiled: %s\n",
> + qdict_get_str(server, "compiled-version"));
>
> channels = qdict_get_qlist(server, "channels");
> if (qlist_empty(channels)) {
> @@ -388,6 +390,7 @@ void do_info_spice(Monitor *mon, QObject **ret_data)
> QList *clist;
> const char *addr;
> int port, tls_port;
> + char version_string[20]; // 12 = |255.255.255\0| is the max
>
> if (!spice_server) {
> *ret_data = qobject_from_jsonf("{ 'enabled': false }");
> @@ -403,6 +406,11 @@ void do_info_spice(Monitor *mon, QObject **ret_data)
> qdict_put(server, "enabled", qbool_from_int(true));
> qdict_put(server, "auth", qstring_from_str(auth));
> qdict_put(server, "host", qstring_from_str(addr ? addr : "0.0.0.0"));
> + sprintf(version_string, "%d.%d.%d",
> + (SPICE_SERVER_VERSION & 0xff0000) >> 16,
> + (SPICE_SERVER_VERSION & 0xff00) >> 8,
> + SPICE_SERVER_VERSION & 0xff);
> + qdict_put(server, "compiled-version", qstring_from_str(version_string));
> if (port) {
> qdict_put(server, "port", qint_from_int(port));
> }
> --
> 1.7.6
>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-08-10 15:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-10 15:21 [Qemu-devel] [PATCH v4] ui/spice-core: report compiled-version in info spice/query-spice Alon Levy
2011-08-10 15:24 ` Alon Levy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).