Re: [Qemu-devel] [PATCH 19/19] VNC: Convert do_info_vnc() to QObject

2009-12-10 Thread Anthony Liguori
Markus Armbruster wrote: Luiz Capitulino writes: Return a QDict with server information. Connected clients are returned as a QList of QDicts. The new functions (vnc_qdict_remote_addr(), vnc_qdict_local_addr() and put_addr_qdict()) are used to insert 'host' and 'service' information in the

Re: [Qemu-devel] [PATCH 19/19] VNC: Convert do_info_vnc() to QObject

2009-12-10 Thread Daniel P. Berrange
On Thu, Dec 10, 2009 at 09:56:06AM -0200, Luiz Capitulino wrote: > On Thu, 10 Dec 2009 11:34:37 +0100 > Markus Armbruster wrote: > > > > +/** > > > + * do_info_vnc(): Show VNC server information > > > + * > > > + * Return a QDict with server information. Connected clients are returned > > > + * a

Re: [Qemu-devel] [PATCH 19/19] VNC: Convert do_info_vnc() to QObject

2009-12-10 Thread Luiz Capitulino
On Thu, 10 Dec 2009 11:34:37 +0100 Markus Armbruster wrote: > > +/** > > + * do_info_vnc(): Show VNC server information > > + * > > + * Return a QDict with server information. Connected clients are returned > > + * as a QList of QDicts. > > + * > > + * The main QDict contains the following: > > +

Re: [Qemu-devel] [PATCH 19/19] VNC: Convert do_info_vnc() to QObject

2009-12-10 Thread Markus Armbruster
Luiz Capitulino writes: > Return a QDict with server information. Connected clients are returned > as a QList of QDicts. > > The new functions (vnc_qdict_remote_addr(), vnc_qdict_local_addr() and > put_addr_qdict()) are used to insert 'host' and 'service' information > in the returned QDict. > >

[Qemu-devel] [PATCH 19/19] VNC: Convert do_info_vnc() to QObject

2009-12-09 Thread Luiz Capitulino
Return a QDict with server information. Connected clients are returned as a QList of QDicts. The new functions (vnc_qdict_remote_addr(), vnc_qdict_local_addr() and put_addr_qdict()) are used to insert 'host' and 'service' information in the returned QDict. This patch is big, but I don't see how t