QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
524 B
24 lines
524 B
#include "qemu/osdep.h"
|
|
#include "ui/console.h"
|
|
#include "qapi/error.h"
|
|
|
|
int vnc_display_password(const char *id, const char *password)
|
|
{
|
|
return -ENODEV;
|
|
}
|
|
int vnc_display_pw_expire(const char *id, time_t expires)
|
|
{
|
|
return -ENODEV;
|
|
};
|
|
void vnc_parse(const char *str)
|
|
{
|
|
if (strcmp(str, "none") == 0) {
|
|
return;
|
|
}
|
|
error_setg(&error_fatal, "VNC support is disabled");
|
|
}
|
|
int vnc_init_func(void *opaque, QemuOpts *opts, Error **errp)
|
|
{
|
|
error_setg(errp, "VNC support is disabled");
|
|
return -1;
|
|
}
|
|
|