mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
26 lines
397 B
C
26 lines
397 B
C
#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);
|
|
}
|