1
2
3
4
5
6
7
8
9
10 #ifndef CIB__H
11 # define CIB__H
12
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16
17
18
19
20
21
22
23 # include <glib.h>
24 # include <crm/common/ipc.h>
25 # include <crm/common/xml.h>
26 # include <crm/cib/cib_types.h>
27 # include <crm/cib/util.h>
28
29 # define CIB_FEATURE_SET "2.0"
30
31
32
33 #define T_CIB_DIFF_NOTIFY "cib_diff_notify"
34
35
36 cib_t *cib_new(void);
37 cib_t *cib_native_new(void);
38 cib_t *cib_file_new(const char *filename);
39 cib_t *cib_remote_new(const char *server, const char *user, const char *passwd, int port,
40 gboolean encrypted);
41
42 cib_t *cib_new_no_shadow(void);
43 char *get_shadow_file(const char *name);
44 cib_t *cib_shadow_new(const char *name);
45
46 void cib_free_notify(cib_t *cib);
47 void cib_free_callbacks(cib_t *cib);
48 void cib_delete(cib_t * cib);
49
50 void cib_dump_pending_callbacks(void);
51 int num_cib_op_callbacks(void);
52 void remove_cib_op_callback(int call_id, gboolean all_callbacks);
53
54 # define CIB_LIBRARY "libcib.so.27"
55
56 #ifdef __cplusplus
57 }
58 #endif
59
60 #endif