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

2009-12-10 Thread Luiz Capitulino
On Thu, 10 Dec 2009 09:30:16 -0600
Anthony Liguori aligu...@linux.vnet.ibm.com wrote:

 malc wrote:
  On Thu, 10 Dec 2009, Luiz Capitulino wrote:
 

  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 to split it.
 
  Signed-off-by: Luiz Capitulino lcapitul...@redhat.com
  
  [..snip..]
 

  +
  +static int vnc_qdict_local_addr(QDict *qdict, int fd)
  +{
  +struct sockaddr_storage sa;
  +socklen_t salen;
  +
  +salen = sizeof(sa);
  +if (getsockname(fd, (struct sockaddr*)sa, salen)  0)
  +return -1;
  
 
  Coding style violation, here and all over the place.

 
 Indeed, please fix.

 I can see only the if braces missing, anything else?





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

2009-12-10 Thread malc
On Thu, 10 Dec 2009, Luiz Capitulino wrote:

 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 to split it.
 
 Signed-off-by: Luiz Capitulino lcapitul...@redhat.com
[..snip..]

 +
 +static int vnc_qdict_local_addr(QDict *qdict, int fd)
 +{
 +struct sockaddr_storage sa;
 +socklen_t salen;
 +
 +salen = sizeof(sa);
 +if (getsockname(fd, (struct sockaddr*)sa, salen)  0)
 +return -1;

Coding style violation, here and all over the place.

[..snip..]

-- 
mailto:av1...@comtv.ru




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

2009-12-10 Thread Anthony Liguori

malc wrote:

On Thu, 10 Dec 2009, Luiz Capitulino wrote:

  

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 to split it.

Signed-off-by: Luiz Capitulino lcapitul...@redhat.com


[..snip..]

  

+
+static int vnc_qdict_local_addr(QDict *qdict, int fd)
+{
+struct sockaddr_storage sa;
+socklen_t salen;
+
+salen = sizeof(sa);
+if (getsockname(fd, (struct sockaddr*)sa, salen)  0)
+return -1;



Coding style violation, here and all over the place.
  


Indeed, please fix.

--
Regards,

Anthony Liguori