mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-17 21:26:13 -07:00
vnc: set name for all I/O channels created
Ensure that all I/O channels created for VNC are given names to distinguish their respective roles. Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
parent
6f01f136af
commit
10bcfe5897
3 changed files with 11 additions and 0 deletions
|
|
@ -67,6 +67,8 @@ gboolean vncws_tls_handshake_io(QIOChannel *ioc G_GNUC_UNUSED,
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
qio_channel_set_name(QIO_CHANNEL(tls), "vnc-ws-server-tls");
|
||||
|
||||
VNC_DEBUG("Start TLS WS handshake process\n");
|
||||
object_unref(OBJECT(vs->ioc));
|
||||
vs->ioc = QIO_CHANNEL(tls);
|
||||
|
|
@ -113,6 +115,7 @@ gboolean vncws_handshake_io(QIOChannel *ioc G_GNUC_UNUSED,
|
|||
}
|
||||
|
||||
wioc = qio_channel_websock_new_server(vs->ioc);
|
||||
qio_channel_set_name(QIO_CHANNEL(wioc), "vnc-ws-server-websock");
|
||||
|
||||
object_unref(OBJECT(vs->ioc));
|
||||
vs->ioc = QIO_CHANNEL(wioc);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue