table of contents
- bullseye 247.3-7+deb11u1
- bullseye-backports 252.5-2~bpo11+1
- testing 252.5-2
- unstable 252.6-1
- experimental 253-1
SD_BUS_MESSAGE_READ_STRV(3) | sd_bus_message_read_strv | SD_BUS_MESSAGE_READ_STRV(3) |
NAME¶
sd_bus_message_read_strv - Access an array of strings in a message
SYNOPSIS¶
#include <systemd/sd-bus.h>
int sd_bus_message_read_strv(sd_bus_message *m, char ***l);
DESCRIPTION¶
sd_bus_message_read_strv() gives access to an array of strings in message m. The "read pointer" in the message must be right before an array of strings. On success, a pointer to the NULL-terminated array of strings is returned in the output parameter l. Note that ownership of this array is transferred to the caller. Hence, the caller is responsible for freeing this array and its contents.
RETURN VALUE¶
On success, sd_bus_message_read_strv() returns a non-negative integer. On failure, it returns a negative errno-style error code.
Errors¶
Returned errors may indicate the following problems:
-EINVAL
-EPERM
-EBADMSG
SEE ALSO¶
systemd 247 |