-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhostwakeup-example.c
66 lines (61 loc) · 1.75 KB
/
hostwakeup-example.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include <stdio.h>
#include <stdlib.h>
#include <dbus/dbus.h>
int main(int argc, char *argv[])
{
DBusError err;
DBusConnection *conn;
DBusMessage *msg;
DBusMessageIter args;
DBusPendingCall *pending;
char **hosts;
int num_hosts;
int ret;
int i;
dbus_error_init(&err);
conn = dbus_bus_get(DBUS_BUS_SYSTEM, &err);
if (dbus_error_is_set(&err)) {
fprintf(stderr, "Connection Error (%s)\n", err.message);
dbus_error_free(&err);
}
if (NULL == conn)
exit(1);
msg = dbus_message_new_method_call("de.yavdr.hostwakeup", "/Hosts", "de.yavdr.hostwakeup", "List");
if (NULL == msg) {
fprintf(stderr, "Message Null\n");
exit(1);
}
if (!dbus_connection_send_with_reply(conn, msg, &pending, -1)) {
fprintf(stderr, "Out Of Memory!\n");
exit(1);
}
if (NULL == pending) {
fprintf(stderr, "Pending Call Null\n");
exit(1);
}
dbus_connection_flush(conn);
dbus_message_unref(msg);
dbus_pending_call_block(pending);
msg = dbus_pending_call_steal_reply(pending);
if (NULL == msg) {
fprintf(stderr, "Reply Null\n");
exit(1);
}
dbus_pending_call_unref(pending);
if (!dbus_message_iter_init(msg, &args))
fprintf(stderr, "Message has no arguments!\n");
else if (!dbus_message_get_args(msg, NULL, DBUS_TYPE_ARRAY, DBUS_TYPE_STRING, &hosts, &num_hosts, DBUS_TYPE_INVALID)) {
if (hosts != NULL)
dbus_free_string_array(hosts);
fprintf(stderr, "Argument is not a string array!\n");
exit(1);
}
if (hosts != NULL) {
printf("found %d host%s\n", num_hosts, (num_hosts == 1 ? "" : "s"));
for (i = 0; i < num_hosts; i++)
printf("host %d: %s\n", i + 1, hosts[i]);
dbus_free_string_array(hosts);
}
dbus_message_unref(msg);
return 0;
}