diff options
author | Paolo Bonzini | 2021-01-20 15:42:35 +0100 |
---|---|---|
committer | Paolo Bonzini | 2021-01-23 21:55:07 +0100 |
commit | 653c97473530b4d0e79950103447bad99b64ed79 (patch) | |
tree | bcef6bd95df70dee0db6d75c4481602ac2ed621f /include | |
parent | qmp: remove deprecated "change" command (diff) | |
download | qemu-653c97473530b4d0e79950103447bad99b64ed79.tar.gz qemu-653c97473530b4d0e79950103447bad99b64ed79.tar.xz qemu-653c97473530b4d0e79950103447bad99b64ed79.zip |
vnc: support "-vnc help"
Use qemu_opts_parse_noisily now that HMP does not call
vnc_parse anymore.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>
Message-Id: <20210120144235.345983-4-pbonzini@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/ui/console.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ui/console.h b/include/ui/console.h index 5dd21976a3..7a3fc11abf 100644 --- a/include/ui/console.h +++ b/include/ui/console.h @@ -439,7 +439,7 @@ void vnc_display_open(const char *id, Error **errp); void vnc_display_add_client(const char *id, int csock, bool skipauth); int vnc_display_password(const char *id, const char *password); int vnc_display_pw_expire(const char *id, time_t expires); -QemuOpts *vnc_parse(const char *str, Error **errp); +void vnc_parse(const char *str); int vnc_init_func(void *opaque, QemuOpts *opts, Error **errp); /* input.c */ |