mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
f4d74c6105
Documentation is licensed under LGPL-2.1-or-later. Scripts are MIT to facilitate reuse. Examples are relicensed to CC0-1.0 to maximise copy-and-paste for users, with permission from authors.
28 lines
437 B
C
28 lines
437 B
C
/* SPDX-License-Identifier: CC0-1.0 */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <systemd/sd-bus.h>
|
|
|
|
int read_strings_from_message(sd_bus_message *m) {
|
|
int r;
|
|
|
|
r = sd_bus_message_enter_container(m, 'a', "s");
|
|
if (r < 0)
|
|
return r;
|
|
|
|
for (;;) {
|
|
const char *s;
|
|
|
|
r = sd_bus_message_read(m, "s", &s);
|
|
if (r < 0)
|
|
return r;
|
|
if (r == 0)
|
|
break;
|
|
|
|
printf("%s\n", s);
|
|
}
|
|
|
|
return sd_bus_message_exit_container(m);
|
|
}
|