Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
1ce52c78
Q
qemu
项目概览
openeuler
/
qemu
通知
10
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Q
qemu
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
1ce52c78
编写于
10月 18, 2012
作者:
P
Paolo Bonzini
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
vnc: introduce a single label for error returns
Signed-off-by:
N
Paolo Bonzini
<
pbonzini@redhat.com
>
上级
c1c1619c
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
17 addition
and
25 deletion
+17
-25
ui/vnc.c
ui/vnc.c
+17
-25
未找到文件。
ui/vnc.c
浏览文件 @
1ce52c78
...
...
@@ -2874,8 +2874,7 @@ int vnc_display_open(DisplayState *ds, const char *display)
if
(
strcmp
(
display
,
"none"
)
==
0
)
return
0
;
if
(
!
(
vs
->
display
=
strdup
(
display
)))
return
-
1
;
vs
->
display
=
g_strdup
(
display
);
vs
->
share_policy
=
VNC_SHARE_POLICY_ALLOW_EXCLUSIVE
;
options
=
display
;
...
...
@@ -2887,9 +2886,7 @@ int vnc_display_open(DisplayState *ds, const char *display)
"VNC password auth disabled due to FIPS mode, "
"consider using the VeNCrypt or SASL authentication "
"methods as an alternative
\n
"
);
g_free
(
vs
->
display
);
vs
->
display
=
NULL
;
return
-
1
;
goto
fail
;
}
password
=
1
;
/* Require password auth */
}
else
if
(
strncmp
(
options
,
"reverse"
,
7
)
==
0
)
{
...
...
@@ -2921,16 +2918,12 @@ int vnc_display_open(DisplayState *ds, const char *display)
if
(
vnc_tls_set_x509_creds_dir
(
vs
,
path
)
<
0
)
{
fprintf
(
stderr
,
"Failed to find x509 certificates/keys in %s
\n
"
,
path
);
g_free
(
path
);
g_free
(
vs
->
display
);
vs
->
display
=
NULL
;
return
-
1
;
goto
fail
;
}
g_free
(
path
);
}
else
{
fprintf
(
stderr
,
"No certificate path provided
\n
"
);
g_free
(
vs
->
display
);
vs
->
display
=
NULL
;
return
-
1
;
goto
fail
;
}
#endif
#if defined(CONFIG_VNC_TLS) || defined(CONFIG_VNC_SASL)
...
...
@@ -2950,9 +2943,7 @@ int vnc_display_open(DisplayState *ds, const char *display)
vs
->
share_policy
=
VNC_SHARE_POLICY_FORCE_SHARED
;
}
else
{
fprintf
(
stderr
,
"unknown vnc share= option
\n
"
);
g_free
(
vs
->
display
);
vs
->
display
=
NULL
;
return
-
1
;
goto
fail
;
}
}
}
...
...
@@ -3055,9 +3046,7 @@ int vnc_display_open(DisplayState *ds, const char *display)
if
((
saslErr
=
sasl_server_init
(
NULL
,
"qemu"
))
!=
SASL_OK
)
{
fprintf
(
stderr
,
"Failed to initialize SASL auth %s"
,
sasl_errstring
(
saslErr
,
NULL
,
NULL
));
g_free
(
vs
->
display
);
vs
->
display
=
NULL
;
return
-
1
;
goto
fail
;
}
#endif
vs
->
lock_key_sync
=
lock_key_sync
;
...
...
@@ -3069,9 +3058,7 @@ int vnc_display_open(DisplayState *ds, const char *display)
else
vs
->
lsock
=
inet_connect
(
display
,
NULL
);
if
(
vs
->
lsock
<
0
)
{
g_free
(
vs
->
display
);
vs
->
display
=
NULL
;
return
-
1
;
goto
fail
;
}
else
{
int
csock
=
vs
->
lsock
;
vs
->
lsock
=
-
1
;
...
...
@@ -3092,13 +3079,18 @@ int vnc_display_open(DisplayState *ds, const char *display)
}
if
(
vs
->
lsock
<
0
)
{
g_free
(
dpy
);
return
-
1
;
}
else
{
g_free
(
vs
->
display
);
vs
->
display
=
dpy
;
goto
fail
;
}
g_free
(
vs
->
display
);
vs
->
display
=
dpy
;
qemu_set_fd_handler2
(
vs
->
lsock
,
NULL
,
vnc_listen_read
,
NULL
,
vs
);
}
return
qemu_set_fd_handler2
(
vs
->
lsock
,
NULL
,
vnc_listen_read
,
NULL
,
vs
);
return
0
;
fail:
g_free
(
vs
->
display
);
vs
->
display
=
NULL
;
return
-
1
;
}
void
vnc_display_add_client
(
DisplayState
*
ds
,
int
csock
,
int
skipauth
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录