mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-20 11:38:09 +02:00
* dbus/dbus-transport-unix.c (_dbus_transport_new_for_domain_socket) (_dbus_transport_new_for_tcp_socket): these didn't need the "server" argument since they are always client side * dbus/dbus-server.c (dbus_server_get_address): new function * bus/main.c (main): take the configuration file as an argument. * test/data/valid-config-files/debug-allow-all.conf: new file to use with dispatch.c tests for example * bus/test-main.c (main): require test data dir * bus/bus.c (bus_context_new): change this to take a configuration file name as argument * doc/config-file.txt (Elements): add <servicedir> * bus/system.conf, bus/session.conf: new files * dbus/dbus-bus.c (dbus_bus_get): look for system bus on well-known socket if none set * configure.in: create system.conf and session.conf
31 lines
1.3 KiB
Text
31 lines
1.3 KiB
Text
<!-- This configuration file controls the per-user-login-session message bus.
|
|
Add a session-local.conf and edit that rather than changing this
|
|
file directly. -->
|
|
|
|
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
|
|
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
|
|
<busconfig>
|
|
<!-- FIXME - this is fairly complicated to fix.
|
|
Propose the following:
|
|
- add "unix:tmpdir=/tmp" which means unix domain transport
|
|
creates a socket with a random secure name
|
|
- add dbus_server_get_address() that gets the actual
|
|
server address
|
|
- add command line option or env variable to the daemon
|
|
causing it to print its list of addresses to a given
|
|
file descriptor
|
|
- session manager or whatever launches the session bus
|
|
reads the address from there and sets the env variable
|
|
-->
|
|
<listen>unix:path=/tmp/foobar</listen>
|
|
<policy context="default">
|
|
<!-- Allow everything -->
|
|
<allow send="*"/>
|
|
<allow receive="*"/>
|
|
<allow own="*"/>
|
|
</policy>
|
|
|
|
<!-- This is included last so local configuration can override what's
|
|
in this standard file -->
|
|
<include ignore_missing="yes">session-local.conf</include>
|
|
</busconfig>
|