1:255.16-alt1
[systemd_ALT.git] / man / sd_bus_set_sender.xml
blobe767df3cd901c43cbc1a85f1044df52be3e73a33
1 <?xml version='1.0'?>
2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3   "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4 <!-- SPDX-License-Identifier: LGPL-2.1-or-later -->
6 <refentry id="sd_bus_set_sender"
7           xmlns:xi="http://www.w3.org/2001/XInclude">
9   <refentryinfo>
10     <title>sd_bus_set_sender</title>
11     <productname>systemd</productname>
12   </refentryinfo>
14   <refmeta>
15     <refentrytitle>sd_bus_set_sender</refentrytitle>
16     <manvolnum>3</manvolnum>
17   </refmeta>
19   <refnamediv>
20     <refname>sd_bus_set_sender</refname>
21     <refname>sd_bus_get_sender</refname>
23     <refpurpose>Configure default sender for outgoing messages</refpurpose>
24   </refnamediv>
26   <refsynopsisdiv>
27     <funcsynopsis>
28       <funcsynopsisinfo>#include &lt;systemd/sd-bus.h&gt;</funcsynopsisinfo>
30       <funcprototype>
31         <funcdef>int <function>sd_bus_set_sender</function></funcdef>
32         <paramdef>sd_bus *<parameter>bus</parameter></paramdef>
33         <paramdef>const char* <parameter>name</parameter></paramdef>
34       </funcprototype>
36       <funcprototype>
37         <funcdef>int <function>sd_bus_get_sender</function></funcdef>
38         <paramdef>sd_bus *<parameter>bus</parameter></paramdef>
39         <paramdef>const char** <parameter>name</parameter></paramdef>
40       </funcprototype>
42     </funcsynopsis>
43   </refsynopsisdiv>
45   <refsect1>
46     <title>Description</title>
48     <para><function>sd_bus_set_sender()</function> configures the default sender service name to use for outgoing
49     messages. The service name specified in the <parameter>name</parameter> parameter is set on all outgoing messages
50     that are sent on the connection and have no sender set yet, for example through
51     <citerefentry><refentrytitle>sd_bus_message_set_sender</refentrytitle><manvolnum>3</manvolnum></citerefentry>. Note
52     that this function is only supported on direct connections, i.e. not on connections to a bus broker as the broker
53     will fill in the sender service name automatically anyway. By default no sender name is configured, and hence
54     messages are sent without sender field set. If the <parameter>name</parameter> parameter is specified as
55     <constant>NULL</constant> the default sender service name is cleared, returning to the default state if a default
56     sender service name was set before. If passed as non-<constant>NULL</constant> the specified name must be a valid
57     unique or well-known service name.</para>
59     <para><function>sd_bus_get_sender()</function> may be used to query the current default service name for outgoing
60     messages.</para>
61   </refsect1>
63   <refsect1>
64     <title>Return Value</title>
66     <para>On success, these functions return 0 or a positive integer. On failure, they return a negative
67     errno-style error code.</para>
69     <refsect2>
70       <title>Errors</title>
72       <para>Returned errors may indicate the following problems:</para>
74       <variablelist>
75         <varlistentry>
76           <term><constant>-ECHILD</constant></term>
78           <listitem><para>The bus connection has been created in a different process, library or module instance.</para></listitem>
79         </varlistentry>
81         <varlistentry>
82           <term><constant>-EPERM</constant></term>
84           <listitem><para>The specified bus connection object is a not a direct but a brokered
85           connection.</para></listitem>
86         </varlistentry>
87       </variablelist>
88     </refsect2>
89   </refsect1>
91   <xi:include href="libsystemd-pkgconfig.xml" />
93   <refsect1>
94     <title>History</title>
95     <para><function>sd_bus_set_sender()</function> and
96     <function>sd_bus_get_sender()</function> were added in version 237.</para>
97   </refsect1>
99   <refsect1>
100     <title>See Also</title>
102     <para>
103       <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
104       <citerefentry><refentrytitle>sd-bus</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
105       <citerefentry><refentrytitle>sd_bus_message_set_sender</refentrytitle><manvolnum>3</manvolnum></citerefentry>
106     </para>
107   </refsect1>
109 </refentry>