(self)
| 470 | return port |
| 471 | |
| 472 | def get_console_websocket_port(self): |
| 473 | console_type = self.get_console_type() |
| 474 | websocket_port = util.get_xml_path(self._XMLDesc(0), |
| 475 | "/domain/devices/graphics[@type='%s']/@websocket" % console_type) |
| 476 | return websocket_port |
| 477 | |
| 478 | def get_console_passwd(self): |
| 479 | return util.get_xml_path(self._XMLDesc(VIR_DOMAIN_XML_SECURE), |
no test coverage detected