glib/gio/dbus-daemon.xml
Alexander Larsson 25581738a8 Add GDBusDAaemon, an implementation of a message bus
This is mostly complete, sans support for activation. However, its
not as picky as the libdbus implementation in terms like validation
and limits checking, nor is it as tested.

Its can be useful to test gdbus if dbus-daemon is not availible, but
its main reason for existance is to implement a default session bus
on win32 so that e.g. GApplication is guaranteed to work.
2012-04-20 15:02:48 +02:00

77 lines
2.6 KiB
XML

<node>
<interface name="org.freedesktop.DBus">
<method name="Hello">
<arg direction="out" type="s" name="assigned_name"/>
</method>
<method name="RequestName">
<arg direction="in" type="s" name="name"/>
<arg direction="in" type="u" name="flags"/>
<arg direction="out" type="u" name="value"/>
</method>
<method name="ReleaseName">
<arg direction="in" type="s" name="name"/>
<arg direction="out" type="u" name="value"/>
</method>
<method name="StartServiceByName">
<arg direction="in" type="s" name="name"/>
<arg direction="in" type="u" name="flags"/>
<arg direction="out" type="u" name="value"/>
</method>
<method name="NameHasOwner">
<arg direction="in" type="s" name="name"/>
<arg direction="out" type="b" name="has_owner"/>
</method>
<method name="ListNames">
<arg direction="out" type="as" name="names"/>
</method>
<method name="ListActivatableNames">
<arg direction="out" type="as" name="activatable_names"/>
</method>
<method name="AddMatch">
<arg direction="in" type="s" name="rule"/>
</method>
<method name="RemoveMatch">
<arg direction="in" type="s" name="rule"/>
</method>
<method name="GetNameOwner">
<arg direction="in" type="s" name="name"/>
<arg direction="out" type="s" name="unique_name"/>
</method>
<method name="ListQueuedOwners">
<arg direction="in" type="s" name="name"/>
<arg direction="out" type="as" name="queued_owners"/>
</method>
<method name="GetConnectionUnixUser">
<arg direction="in" type="s" name="name"/>
<arg direction="out" type="u" name="uid"/>
</method>
<method name="GetConnectionUnixProcessID">
<arg direction="in" type="s" name="name"/>
<arg direction="out" type="u" name="pid"/>
</method>
<method name="GetConnectionSELinuxSecurityContext">
<arg direction="in" type="s" name="name"/>
<arg direction="out" type="ay" name="security_context"/>
</method>
<method name="UpdateActivationEnvironment">
<arg direction="in" type="a{ss}" name="environment"/>
</method>
<method name="ReloadConfig">
</method>
<method name="GetId">
<arg direction="out" type="s" name="unique_id"/>
</method>
<signal name="NameOwnerChanged">
<arg type="s" name="name"/>
<arg type="s" name="old_owner"/>
<arg type="s" name="new_owner"/>
</signal>
<signal name="NameLost">
<arg type="s" name="name"/>
</signal>
<signal name="NameAcquired">
<arg type="s" name="name"/>
</signal>
</interface>
</node>