migration/rdma: Eliminate error_propagate()
[qemu/armbru.git] / include / monitor / qmp-helpers.h
blob318c3357a225445b2aa305045d6b97ead42f0318
1 /*
2 * QMP command helpers
4 * Copyright (c) 2022 Red Hat Inc.
6 * Authors:
7 * Markus Armbruster <armbru@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
13 #ifndef MONITOR_QMP_HELPERS_H
15 bool qmp_add_client_spice(int fd, bool has_skipauth, bool skipauth,
16 bool has_tls, bool tls, Error **errp);
17 #ifdef CONFIG_VNC
18 bool qmp_add_client_vnc(int fd, bool has_skipauth, bool skipauth,
19 bool has_tls, bool tls, Error **errp);
20 #endif
21 #ifdef CONFIG_DBUS_DISPLAY
22 bool qmp_add_client_dbus_display(int fd, bool has_skipauth, bool skipauth,
23 bool has_tls, bool tls, Error **errp);
24 #endif
25 bool qmp_add_client_char(int fd, bool has_skipauth, bool skipauth,
26 bool has_tls, bool tls, const char *protocol,
27 Error **errp);
29 #endif