(self, name)
| 99 | return listen_addr |
| 100 | |
| 101 | def graphics_port(self, name): |
| 102 | inst = self.get_instance(name) |
| 103 | console_port = util.get_xml_path(inst.XMLDesc(0), "/domain/devices/graphics/@port") |
| 104 | if console_port is None: |
| 105 | return "None" |
| 106 | return console_port |
| 107 | |
| 108 | def domain_name(self, name): |
| 109 | inst = self.get_instance(name) |
no test coverage detected