diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-02-25 12:39:06 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-03-13 10:27:46 +0100 |
commit | cd153e2aa2f0ec39c04c2b732ebebfc6d4766986 (patch) | |
tree | f49f3d93d8ce23061debb120181db655027fb9f2 /include | |
parent | 548cbb36f415d6086f5252309ab5aa7634497ab5 (diff) | |
download | qemu-cd153e2aa2f0ec39c04c2b732ebebfc6d4766986.zip qemu-cd153e2aa2f0ec39c04c2b732ebebfc6d4766986.tar.gz qemu-cd153e2aa2f0ec39c04c2b732ebebfc6d4766986.tar.bz2 |
chardev: add spice support to qapi
This patch adds 'spicevmc' and 'spiceport' support to qapi and also
switches over the spice chardev initialization to the new qapi code
path.
Diffstat (limited to 'include')
-rw-r--r-- | include/ui/qemu-spice.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/ui/qemu-spice.h b/include/ui/qemu-spice.h index 5a78fd7..eba6d77 100644 --- a/include/ui/qemu-spice.h +++ b/include/ui/qemu-spice.h @@ -44,10 +44,13 @@ int qemu_spice_migrate_info(const char *hostname, int port, int tls_port, void do_info_spice_print(Monitor *mon, const QObject *data); void do_info_spice(Monitor *mon, QObject **ret_data); -CharDriverState *qemu_chr_open_spice(QemuOpts *opts); +CharDriverState *qemu_chr_open_spice_vmc(const char *type); #if SPICE_SERVER_VERSION >= 0x000c02 -CharDriverState *qemu_chr_open_spice_port(QemuOpts *opts); +CharDriverState *qemu_chr_open_spice_port(const char *name); void qemu_spice_register_ports(void); +#else +static inline CharDriverState *qemu_chr_open_spice_port(const char *name) +{ return NULL; } #endif #else /* CONFIG_SPICE */ |