GDBusConnectionFlags

Flags used when creating a new GDBusConnection. G_DBUS_CONNECTION_FLAGS_NONE No flags set. G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_CLIENT Perform authentication against server. G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER Perform authentication against client. G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS When authenticating as a server, allow the anonymous authentication method. G_DBUS_CONNECTION_FLAGS_MESSAGE_BUS_CONNECTION Pass this flag if connecting to a peer that is a message bus. This means that the Hello() method will be invoked as part of the connection setup. G_DBUS_CONNECTION_FLAGS_DELAY_MESSAGE_PROCESSING If set, processing of D-Bus messages is delayed until g_dbus_connection_start_message_processing() is called. Since 2.26

Values

ValueMeaning
NONE0
AUTHENTICATION_CLIENT(1 << 0)
AUTHENTICATION_SERVER(1 << 1)
AUTHENTICATION_ALLOW_ANONYMOUS(1 << 2)
MESSAGE_BUS_CONNECTION(1 << 3)
DELAY_MESSAGE_PROCESSING(1 << 4)

Meta