mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 10:34:58 -06:00
QMP: Introduce VNC_DISCONNECTED event
It's emitted when a VNC client disconnects from QEMU, client's information such as port and IP address are provided. Event example: { "event": "VNC_DISCONNECTED", "timestamp": { "seconds": 1262976601, "microseconds": 975795 }, "data": { "server": { "auth": "sasl", "family": "ipv4", "service": "5901", "host": "0.0.0.0" }, "client": { "family": "ipv4", "service": "58425", "host": "127.0.0.1", "sasl_username": "foo" } } } Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
586153d952
commit
0d72f3d31b
4 changed files with 12 additions and 0 deletions
|
@ -31,3 +31,9 @@ Data: None.
|
|||
Description: Issued when a VNC client establishes a connection.
|
||||
Data: 'server' and 'client' keys with the same keys as 'query-vnc',
|
||||
except that authentication ID is not provided.
|
||||
|
||||
5 VNC_DISCONNECTED
|
||||
------------------
|
||||
|
||||
Description: Issued when the conection is closed.
|
||||
Data: 'server' and 'client' keys with the same keys as 'query-vnc'.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue