mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-19 01:48:06 +02:00
* dbus/dbus-message.c (decode_string_field): support FIELD_SENDER (dbus_message_is_error): fix this function * bus/dbus-daemon-1.1: clarify logic on when <deny>/<allow> rules match * bus/policy.c (bus_client_policy_check_can_receive): fix code to reflect clarified man page (bus_client_policy_check_can_send): ditto * bus/session.conf.in: fixup * bus/system.conf.in: fixup
15 lines
542 B
Text
15 lines
542 B
Text
<!-- Bus that listens on a debug pipe and doesn't create any restrictions -->
|
|
|
|
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
|
|
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
|
|
<busconfig>
|
|
<listen>debug-pipe:name=test-server</listen>
|
|
<listen>unix:tmpdir=@TEST_SOCKET_DIR@</listen>
|
|
<servicedir>@TEST_SERVICE_DIR@</servicedir>
|
|
<policy context="default">
|
|
<allow send_interface="*"/>
|
|
<allow receive_interface="*"/>
|
|
<allow own="*"/>
|
|
<allow user="*"/>
|
|
</policy>
|
|
</busconfig>
|