qemu-patch-raspberry4/include/ui/dbus-module.h
Marc-André Lureau 99997823bb ui/dbus: add p2p=on/off option
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>
2021-12-21 10:50:22 +04:00

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_*/