mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
VNC password authentication, by Daniel P. Berrange.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3135 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
e25a5822ca
commit
7084851534
4 changed files with 240 additions and 18 deletions
13
monitor.c
13
monitor.c
|
@ -403,8 +403,17 @@ static void do_change_block(const char *device, const char *filename)
|
|||
|
||||
static void do_change_vnc(const char *target)
|
||||
{
|
||||
if (vnc_display_open(NULL, target) < 0)
|
||||
term_printf("could not start VNC server on %s\n", target);
|
||||
if (strcmp(target, "passwd") == 0 ||
|
||||
strcmp(target, "password") == 0) {
|
||||
char password[9];
|
||||
monitor_readline("Password: ", 1, password, sizeof(password)-1);
|
||||
password[sizeof(password)-1] = '\0';
|
||||
if (vnc_display_password(NULL, password) < 0)
|
||||
term_printf("could not set VNC server password\n");
|
||||
} else {
|
||||
if (vnc_display_open(NULL, target) < 0)
|
||||
term_printf("could not start VNC server on %s\n", target);
|
||||
}
|
||||
}
|
||||
|
||||
static void do_change(const char *device, const char *target)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue