Bug 431895

Summary: API lacks equivalent to "virsh vncdisplay"
Product: [Fedora] Fedora Reporter: David Mueller <dsm42>
Component: libvirtAssignee: Daniel Veillard <veillard>
Status: CLOSED NOTABUG QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: low Docs Contact:
Priority: low    
Version: 8CC: berrange
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2008-02-07 18:16:26 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description David Mueller 2008-02-07 17:59:00 UTC
Description of problem:

The API for libvirt appears to lack an equivalent to the "virsh vncdisplay"
command to obtain the VNC details of a guest VM.  I am using the Python
bindings, and while it is possible to get this via a shell command, e.g.
os.popen('virsh vncdisplay emulator_red').read(), this is rather inelegant.

Version-Release number of selected component (if applicable):

libvirt-0.4.0-4.fc8

Comment 1 Daniel Berrangé 2008-02-07 18:16:26 UTC
its available in the XML description

char *                  virDomainGetXMLDesc     (virDomainPtr domain,
                                                 int flags);


With xpath expression of  /domain/devices/graphics[@type='vnc']