[Libvirt-cim] [PATCH #2] Add VNC autoport support. Updated patch to resolve compilation issues, and omit the port property if =1 and only set autoport=yes

Sharad Mishra snmishra at us.ibm.com
Tue Mar 22 01:45:22 UTC 2011


+1

code follows coding guidelines, compiles and cimtest
"VirtualSystemManagementService - 20_verify_vnc_password.py" passes.

Sharad Mishra
Open Virtualization
Linux Technology Center
IBM

libvirt-cim-bounces at redhat.com wrote on 03/21/2011 06:08:00 PM:

> Chip Vincent <cvincent at linux.vnet.ibm.com>
> Sent by: libvirt-cim-bounces at redhat.com
>
> 03/21/11 06:08 PM
>
> Please respond to
> List for discussion and development of libvirt CIM
<libvirt-cim at redhat.com>
>
> To
>
> libvirt-cim at redhat.com
>
> cc
>
> Subject
>
> [Libvirt-cim] [PATCH #2] Add VNC autoport support. Updated patch to
> resolve compilation issues, and omit the port property if =1 and
> only set autoport=yes
>
> # HG changeset patch
> # User Chip Vincent <cvincent at us.ibm.com>
> # Date 1300756004 14400
> # Node ID ee92bc70899ca4dd6f169c89edc4d374163f3b4f
> # Parent  1ac08805bf69fd5e09db234f61860f986f29e0b9
> Add VNC autoport support. Updated patch to resolve compilation
> issues, and omit the port property if =1 and only set autoport=yes.
>
> Signed-off-by: Chip Vincent <cvincent at us.ibm.com>
>
> diff --git a/libxkutil/xmlgen.c b/libxkutil/xmlgen.c
> --- a/libxkutil/xmlgen.c
> +++ b/libxkutil/xmlgen.c
> @@ -405,7 +405,11 @@
>                  if (STREQC(dev->type, "sdl"))
>                          goto out;
>
> -                xmlNewProp(tmp, BAD_CAST "port", BAD_CAST dev->port);
> +                if (STREQC(dev->port, "-1"))
> +                        xmlNewProp(tmp, BAD_CAST "autoport", BAD_CAST
"yes");
> +                else
> +                        xmlNewProp(tmp, BAD_CAST "port", BAD_CAST dev->
port);
> +
>                  xmlNewProp(tmp, BAD_CAST "listen", BAD_CAST dev->host);
>                  xmlNewProp(tmp, BAD_CAST "keymap", BAD_CAST dev->
keymap);
>
>
> _______________________________________________
> Libvirt-cim mailing list
> Libvirt-cim at redhat.com
> https://www.redhat.com/mailman/listinfo/libvirt-cim
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/libvirt-cim/attachments/20110321/c2a8b095/attachment.htm>


More information about the Libvirt-cim mailing list