pacemaker 2.1.5-a3f44794f94
Scalable High-Availability cluster resource manager
pcmk-dbus.h
Go to the documentation of this file.
1/*
2 * Copyright 2014-2020 the Pacemaker project contributors
3 *
4 * The version control history for this file may have further details.
5 *
6 * This source code is licensed under GNU Lesser General Public License
7 * version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
8 */
9
10#ifndef PCMK_DBUS__H
11# define PCMK_DBUS__H
12
13# include <dbus/dbus.h>
14
15# ifndef DBUS_TIMEOUT_USE_DEFAULT
16# define DBUS_TIMEOUT_USE_DEFAULT -1
17# endif
18
19G_GNUC_INTERNAL
20DBusConnection *pcmk_dbus_connect(void);
21
22G_GNUC_INTERNAL
23void pcmk_dbus_disconnect(DBusConnection *connection);
24
25G_GNUC_INTERNAL
26DBusPendingCall *pcmk_dbus_send(DBusMessage *msg, DBusConnection *connection,
27 void(*done)(DBusPendingCall *pending, void *user_data), void *user_data, int timeout);
28
29G_GNUC_INTERNAL
30DBusMessage *pcmk_dbus_send_recv(DBusMessage *msg, DBusConnection *connection, DBusError *error, int timeout);
31
32G_GNUC_INTERNAL
33bool pcmk_dbus_type_check(DBusMessage *msg, DBusMessageIter *field, int expected, const char *function, int line);
34
35G_GNUC_INTERNAL
37 DBusConnection *connection, const char *target, const char *obj, const gchar * iface, const char *name,
38 void (*callback)(const char *name, const char *value, void *userdata), void *userdata,
39 DBusPendingCall **pending, int timeout);
40
41G_GNUC_INTERNAL
42bool pcmk_dbus_find_error(DBusPendingCall *pending, DBusMessage *reply,
43 DBusError *error);
44
45#endif /* PCMK_DBUS__H */
const char * name
Definition: cib.c:24
G_GNUC_INTERNAL DBusConnection * pcmk_dbus_connect(void)
Definition: dbus.c:259
G_GNUC_INTERNAL bool pcmk_dbus_find_error(DBusPendingCall *pending, DBusMessage *reply, DBusError *error)
Definition: dbus.c:330
G_GNUC_INTERNAL DBusMessage * pcmk_dbus_send_recv(DBusMessage *msg, DBusConnection *connection, DBusError *error, int timeout)
Definition: dbus.c:412
G_GNUC_INTERNAL bool pcmk_dbus_type_check(DBusMessage *msg, DBusMessageIter *field, int expected, const char *function, int line)
Definition: dbus.c:516
G_GNUC_INTERNAL char * pcmk_dbus_get_property(DBusConnection *connection, const char *target, const char *obj, const gchar *iface, const char *name, void(*callback)(const char *name, const char *value, void *userdata), void *userdata, DBusPendingCall **pending, int timeout)
G_GNUC_INTERNAL void pcmk_dbus_disconnect(DBusConnection *connection)
Definition: dbus.c:295
G_GNUC_INTERNAL DBusPendingCall * pcmk_dbus_send(DBusMessage *msg, DBusConnection *connection, void(*done)(DBusPendingCall *pending, void *user_data), void *user_data, int timeout)
Definition: dbus.c:476
unsigned int timeout
Definition: pcmk_fence.c:32
const char * target
Definition: pcmk_fence.c:29