mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
vnc: generalize "VNC server running on ..." message
The message is useful whenever the user specifies "-vnc to=XX". Move it to ui/vnc.c. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
cc96677469
commit
33df7bf3bf
3 changed files with 12 additions and 25 deletions
7
vl.c
7
vl.c
|
@ -2947,7 +2947,6 @@ int main(int argc, char **argv, char **envp)
|
|||
const char *qtest_log = NULL;
|
||||
const char *pid_file = NULL;
|
||||
const char *incoming = NULL;
|
||||
int show_vnc_port = 0;
|
||||
bool defconfig = true;
|
||||
bool userconfig = true;
|
||||
bool nographic = false;
|
||||
|
@ -4216,7 +4215,6 @@ int main(int argc, char **argv, char **envp)
|
|||
display_type = DT_COCOA;
|
||||
#elif defined(CONFIG_VNC)
|
||||
vnc_parse("localhost:0,to=99,id=default", &error_abort);
|
||||
show_vnc_port = 1;
|
||||
#else
|
||||
display_type = DT_NONE;
|
||||
#endif
|
||||
|
@ -4565,11 +4563,6 @@ int main(int argc, char **argv, char **envp)
|
|||
qemu_opts_foreach(qemu_find_opts("vnc"),
|
||||
vnc_init_func, NULL, NULL);
|
||||
#endif
|
||||
if (show_vnc_port) {
|
||||
char *ret = vnc_display_local_addr("default");
|
||||
printf("VNC server running on '%s'\n", ret);
|
||||
g_free(ret);
|
||||
}
|
||||
|
||||
if (using_spice) {
|
||||
qemu_spice_display_init();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue