99997823bb
Add an option to use direct connections instead of via the bus. Clients are accepted with QMP add_client. This allows to provide the D-Bus display without a bus. It also simplifies the testing setup (some CI have issues to setup a D-Bus bus in a container). Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Acked-by: Gerd Hoffmann <kraxel@redhat.com>
12 lines
239 B
C
12 lines
239 B
C
#ifndef DBUS_MODULE_H_
|
|
#define DBUS_MODULE_H_
|
|
|
|
struct QemuDBusDisplayOps {
|
|
bool (*add_client)(int csock, Error **errp);
|
|
};
|
|
|
|
extern int using_dbus_display;
|
|
extern struct QemuDBusDisplayOps qemu_dbus_display;
|
|
|
|
#endif /* DBUS_MODULE_H_*/
|