提交 38e5756a 编写于 作者: D Daniel P. Berrange 提交者: Gerd Hoffmann

ui: remove 'ws_tls' field from VncState

The 'ws_tls' field in VncState is only ever representing
the result of 'tlscreds != NULL' and is thus pointless.
Replace use of 'ws_tls' with a direct check against
'tlscreds'
Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
Message-id: 1475163940-26094-4-git-send-email-berrange@redhat.com
Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
上级 12b28067
...@@ -3029,7 +3029,7 @@ static void vnc_connect(VncDisplay *vd, QIOChannelSocket *sioc, ...@@ -3029,7 +3029,7 @@ static void vnc_connect(VncDisplay *vd, QIOChannelSocket *sioc,
qio_channel_set_blocking(vs->ioc, false, NULL); qio_channel_set_blocking(vs->ioc, false, NULL);
if (websocket) { if (websocket) {
vs->websocket = 1; vs->websocket = 1;
if (vd->ws_tls) { if (vd->tlscreds) {
vs->ioc_tag = qio_channel_add_watch( vs->ioc_tag = qio_channel_add_watch(
vs->ioc, G_IO_IN, vncws_tls_handshake_io, vs, NULL); vs->ioc, G_IO_IN, vncws_tls_handshake_io, vs, NULL);
} else { } else {
...@@ -3379,9 +3379,6 @@ vnc_display_setup_auth(VncDisplay *vs, ...@@ -3379,9 +3379,6 @@ vnc_display_setup_auth(VncDisplay *vs,
if (password) { if (password) {
if (vs->tlscreds) { if (vs->tlscreds) {
vs->auth = VNC_AUTH_VENCRYPT; vs->auth = VNC_AUTH_VENCRYPT;
if (websocket) {
vs->ws_tls = true;
}
if (object_dynamic_cast(OBJECT(vs->tlscreds), if (object_dynamic_cast(OBJECT(vs->tlscreds),
TYPE_QCRYPTO_TLS_CREDS_X509)) { TYPE_QCRYPTO_TLS_CREDS_X509)) {
VNC_DEBUG("Initializing VNC server with x509 password auth\n"); VNC_DEBUG("Initializing VNC server with x509 password auth\n");
...@@ -3409,9 +3406,6 @@ vnc_display_setup_auth(VncDisplay *vs, ...@@ -3409,9 +3406,6 @@ vnc_display_setup_auth(VncDisplay *vs,
} else if (sasl) { } else if (sasl) {
if (vs->tlscreds) { if (vs->tlscreds) {
vs->auth = VNC_AUTH_VENCRYPT; vs->auth = VNC_AUTH_VENCRYPT;
if (websocket) {
vs->ws_tls = true;
}
if (object_dynamic_cast(OBJECT(vs->tlscreds), if (object_dynamic_cast(OBJECT(vs->tlscreds),
TYPE_QCRYPTO_TLS_CREDS_X509)) { TYPE_QCRYPTO_TLS_CREDS_X509)) {
VNC_DEBUG("Initializing VNC server with x509 SASL auth\n"); VNC_DEBUG("Initializing VNC server with x509 SASL auth\n");
...@@ -3439,9 +3433,6 @@ vnc_display_setup_auth(VncDisplay *vs, ...@@ -3439,9 +3433,6 @@ vnc_display_setup_auth(VncDisplay *vs,
} else { } else {
if (vs->tlscreds) { if (vs->tlscreds) {
vs->auth = VNC_AUTH_VENCRYPT; vs->auth = VNC_AUTH_VENCRYPT;
if (websocket) {
vs->ws_tls = true;
}
if (object_dynamic_cast(OBJECT(vs->tlscreds), if (object_dynamic_cast(OBJECT(vs->tlscreds),
TYPE_QCRYPTO_TLS_CREDS_X509)) { TYPE_QCRYPTO_TLS_CREDS_X509)) {
VNC_DEBUG("Initializing VNC server with x509 no auth\n"); VNC_DEBUG("Initializing VNC server with x509 no auth\n");
......
...@@ -172,7 +172,6 @@ struct VncDisplay ...@@ -172,7 +172,6 @@ struct VncDisplay
int auth; int auth;
int subauth; /* Used by VeNCrypt */ int subauth; /* Used by VeNCrypt */
int ws_auth; /* Used by websockets */ int ws_auth; /* Used by websockets */
bool ws_tls; /* Used by websockets */
bool lossy; bool lossy;
bool non_adaptive; bool non_adaptive;
QCryptoTLSCreds *tlscreds; QCryptoTLSCreds *tlscreds;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册