]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/sd_bus_message_append_string_memfd.xml
man: drop mode line in file headers
[thirdparty/systemd.git] / man / sd_bus_message_append_string_memfd.xml
CommitLineData
514094f9 1<?xml version='1.0'?>
effbc8e4 2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
12b42c76 3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
effbc8e4
ZJS
4
5<!--
572eb058 6 SPDX-License-Identifier: LGPL-2.1+
effbc8e4
ZJS
7-->
8
48f69d8f 9<refentry id="sd_bus_message_append_string_memfd"
effbc8e4
ZJS
10 xmlns:xi="http://www.w3.org/2001/XInclude">
11
12 <refentryinfo>
13 <title>sd_bus_message_append_string_memfd</title>
14 <productname>systemd</productname>
effbc8e4
ZJS
15 </refentryinfo>
16
17 <refmeta>
18 <refentrytitle>sd_bus_message_append_string_memfd</refentrytitle>
19 <manvolnum>3</manvolnum>
20 </refmeta>
21
22 <refnamediv>
23 <refname>sd_bus_message_append_string_memfd</refname>
24 <refname>sd_bus_message_append_string_iovec</refname>
25 <refname>sd_bus_message_append_string_space</refname>
26
27 <refpurpose>Attach a string to a message</refpurpose>
28 </refnamediv>
29
30 <refsynopsisdiv>
31 <funcsynopsis>
32 <funcsynopsisinfo>#include &lt;systemd/sd-bus.h&gt;</funcsynopsisinfo>
33
34 <funcprototype>
35 <funcdef>int sd_bus_message_append_string_memfd</funcdef>
36 <paramdef>sd_bus_message *<parameter>m</parameter></paramdef>
fac9c0d5 37 <paramdef>int <parameter>memfd</parameter></paramdef>
effbc8e4
ZJS
38 </funcprototype>
39
40 <funcprototype>
41 <funcdef>int sd_bus_message_append_string_iovec</funcdef>
42 <paramdef>sd_bus_message *<parameter>m</parameter></paramdef>
43 <paramdef>const struct iovec *<parameter>iov</parameter></paramdef>
44 <paramdef>unsigned <parameter>n</parameter></paramdef>
45 </funcprototype>
46
47 <funcprototype>
48 <funcdef>int sd_bus_message_append_string_space</funcdef>
49 <paramdef>sd_bus_message *<parameter>m</parameter></paramdef>
50 <paramdef>size_t <parameter>size</parameter></paramdef>
51 <paramdef>char **<parameter>s</parameter></paramdef>
52 </funcprototype>
53 </funcsynopsis>
54 </refsynopsisdiv>
55
56 <refsect1>
57 <title>Description</title>
58
b8bde116 59 <para>The functions
effbc8e4
ZJS
60 <function>sd_bus_message_append_string_memfd</function> and
61 <function>sd_bus_message_append_string_iovec</function> can be
62 used to append a single string (item of type <literal>s</literal>)
63 to message <parameter>m</parameter>.</para>
64
65 <para>In case of
b8bde116 66 <function>sd_bus_message_append_string_memfd</function>, the
effbc8e4
ZJS
67 contents of <parameter>memfd</parameter> are the string. They must
68 satisfy the same constraints as described for the
69 <literal>s</literal> type in
70 <citerefentry><refentrytitle>sd_bus_message_append_basic</refentrytitle><manvolnum>3</manvolnum></citerefentry>.</para>
71
72 <para>In case of
b8bde116 73 <function>sd_bus_message_append_string_iovec</function>, the
effbc8e4
ZJS
74 payload of <parameter>iov</parameter> is the string. It must
75 satisfy the same constraints as described for the
76 <literal>s</literal> type in
77 <citerefentry><refentrytitle>sd_bus_message_append_basic</refentrytitle><manvolnum>3</manvolnum></citerefentry>.</para>
78
b8bde116 79 <para>The <parameter>iov</parameter> argument must point to
effbc8e4
ZJS
80 <parameter>n</parameter> <structname>struct iovec</structname>
81 structures. Each structure may have the
82 <structname>iov_base</structname> field set, in which case the
83 memory pointed to will be copied into the message, or unset, in
84 which case a block of spaces (ASCII 32) of length
85 <structname>iov_len</structname> will be inserted. The
86 memory pointed at by <parameter>iov</parameter> may be changed
87 after this call.</para>
88
b8bde116
JE
89 <para>The
90 <function>sd_bus_message_append_string_space</function> function appends
91 space for a string to message <parameter>m</parameter>. It behaves
92 similar to <function>sd_bus_message_append_basic</function> with
effbc8e4 93 type <literal>s</literal>, but instead of copying a string into
dca348bc
JE
94 the message, it returns a pointer to the destination area to
95 the caller in pointer <parameter>p</parameter>. Space for the string
effbc8e4
ZJS
96 of length <parameter>size</parameter> plus the terminating
97 <constant>NUL</constant> is allocated.</para>
98 </refsect1>
99
100 <refsect1>
101 <title>Return Value</title>
102
103 <para>On success, those calls return 0 or a positive integer. On
104 failure, they returns a negative errno-style error code.</para>
105 </refsect1>
106
107 <xi:include href="sd_bus_message_append_basic.xml" xpointer="errors" />
108
7d6b2723 109 <xi:include href="libsystemd-pkgconfig.xml" />
effbc8e4
ZJS
110
111 <refsect1>
112 <title>See Also</title>
113
114 <para>
115 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
116 <citerefentry><refentrytitle>sd-bus</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
117 <citerefentry><refentrytitle>sd_bus_message_append_basic</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
118 <ulink url="http://dbus.freedesktop.org/doc/dbus-specification.html">The D-Bus specification</ulink>
119 </para>
120 </refsect1>
121
122</refentry>