Re: [Qemu-devel] [PATCH 09/19] Change 'query-version' to output broken down version string

2010-06-09 Thread Luiz Capitulino
On Mon, 07 Jun 2010 10:11:28 -0500 Anthony Liguori wrote: > On 06/07/2010 09:42 AM, Daniel P. Berrange wrote: > > A previous discussion brought up the fact that clients should > > not have to parse version string from QMP, it should be given > > to them pre-split. > > > > Change query-version out

Re: [Qemu-devel] [PATCH 09/19] Change 'query-version' to output broken down version string

2010-06-07 Thread Anthony Liguori
On 06/07/2010 09:42 AM, Daniel P. Berrange wrote: A previous discussion brought up the fact that clients should not have to parse version string from QMP, it should be given to them pre-split. Change query-version output format from: { "qemu": "0.11.50", "package": "" } to: { qemu: { "m

[Qemu-devel] [PATCH 09/19] Change 'query-version' to output broken down version string

2010-06-07 Thread Daniel P. Berrange
A previous discussion brought up the fact that clients should not have to parse version string from QMP, it should be given to them pre-split. Change query-version output format from: { "qemu": "0.11.50", "package": "" } to: { qemu: { "major": 0, "minor": 11, "micro": 5 }, "package": "" }