mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00
python/qmp/legacy: allow using sockets for connect()
Instead of asserting that we have an address, allow the use of sockets instead of addresses during a call to connect(). Signed-off-by: John Snow <jsnow@redhat.com> Message-id: 20230517163406.2593480-3-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
This commit is contained in:
parent
9341b2a6b9
commit
b8d4ca1823
1 changed files with 3 additions and 2 deletions
|
@ -150,12 +150,13 @@ class QEMUMonitorProtocol:
|
||||||
:return: QMP greeting dict, or None if negotiate is false
|
:return: QMP greeting dict, or None if negotiate is false
|
||||||
:raise ConnectError: on connection errors
|
:raise ConnectError: on connection errors
|
||||||
"""
|
"""
|
||||||
assert self._address is not None
|
addr_or_sock = self._address or self._sock
|
||||||
|
assert addr_or_sock is not None
|
||||||
self._qmp.await_greeting = negotiate
|
self._qmp.await_greeting = negotiate
|
||||||
self._qmp.negotiate = negotiate
|
self._qmp.negotiate = negotiate
|
||||||
|
|
||||||
self._sync(
|
self._sync(
|
||||||
self._qmp.connect(self._address)
|
self._qmp.connect(addr_or_sock)
|
||||||
)
|
)
|
||||||
return self._get_greeting()
|
return self._get_greeting()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue