mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-18 09:28:22 +02:00
* bus/bus.c (bus_context_new): print the address in here, rather than in main(), because we need to do it before forking the daemon * bus/dispatch.c (send_service_nonexistent_error): set the sender on the service nonexistent error * bus/driver.c (bus_driver_handle_acquire_service): set the sender on the AcquireService reply * test/data/valid-config-files/debug-allow-all.conf.in: Make test server also listen on a UNIX socket so services can connect to it.
14 lines
500 B
Text
14 lines
500 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="*"/>
|
|
<allow receive="*"/>
|
|
<allow own="*"/>
|
|
</policy>
|
|
</busconfig>
|