blob: 8d9e026df838127a312ba4f7369a079c779a56db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _MONITOR_H_
#define _MONITOR_H_
#define MONITOR_VERSION "0.1"
#define MONITOR_DBUS_INTERFACE "org.freeipa.sssd.monitor"
#define MONITOR_DBUS_PATH "/org/freeipa/sssd/monitor"
/* D-BUS Methods */
#define MONITOR_METHOD_VERSION "getVersion"
int start_monitor(TALLOC_CTX *mem_ctx,
struct event_context *event_ctx,
struct confdb_ctx *cdb);
#endif /* _MONITOR_H */
|