mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
vnc.c: remove dead code
to= is handled in qemu-sockets.c inet_listen. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
5e398dd2f0
commit
bca403c8b8
1 changed files with 0 additions and 3 deletions
3
vnc.c
3
vnc.c
|
@ -2537,7 +2537,6 @@ int vnc_display_open(DisplayState *ds, const char *display)
|
|||
const char *options;
|
||||
int password = 0;
|
||||
int reverse = 0;
|
||||
int to_port = 0;
|
||||
#ifdef CONFIG_VNC_TLS
|
||||
int tls = 0, x509 = 0;
|
||||
#endif
|
||||
|
@ -2563,8 +2562,6 @@ int vnc_display_open(DisplayState *ds, const char *display)
|
|||
password = 1; /* Require password auth */
|
||||
} else if (strncmp(options, "reverse", 7) == 0) {
|
||||
reverse = 1;
|
||||
} else if (strncmp(options, "to=", 3) == 0) {
|
||||
to_port = atoi(options+3) + 5900;
|
||||
#ifdef CONFIG_VNC_SASL
|
||||
} else if (strncmp(options, "sasl", 4) == 0) {
|
||||
sasl = 1; /* Require SASL auth */
|
||||
|
|
Loading…
Reference in a new issue