pacemaker
2.1.7-0f7f88312f
Scalable High-Availability cluster resource manager
|
Cluster Configuration. More...
#include <glib.h>
#include <crm/common/ipc.h>
#include <crm/common/xml.h>
#include <crm/cib/cib_types.h>
#include <crm/cib/util.h>
Go to the source code of this file.
Macros | |
#define | CIB_FEATURE_SET "2.0" |
#define | T_CIB_DIFF_NOTIFY "cib_diff_notify" |
#define | CIB_LIBRARY "libcib.so.27" |
Functions | |
cib_t * | cib_new (void) |
Create a new CIB connection object. More... | |
cib_t * | cib_native_new (void) |
cib_t * | cib_file_new (const char *filename) |
cib_t * | cib_remote_new (const char *server, const char *user, const char *passwd, int port, gboolean encrypted) |
cib_t * | cib_new_no_shadow (void) |
Create a new CIB connection object, ignoring any active shadow CIB. More... | |
char * | get_shadow_file (const char *name) |
cib_t * | cib_shadow_new (const char *name) |
void | cib_free_notify (cib_t *cib) |
void | cib_free_callbacks (cib_t *cib) |
Free all callbacks for a CIB connection. More... | |
void | cib_delete (cib_t *cib) |
Free all memory used by CIB connection. More... | |
void | cib_dump_pending_callbacks (void) |
int | num_cib_op_callbacks (void) |
void | remove_cib_op_callback (int call_id, gboolean all_callbacks) |
Cluster Configuration.
Definition in file cib.h.
void cib_delete | ( | cib_t * | cib | ) |
Free all memory used by CIB connection.
[in,out] | cib | CIB connection to delete |
Definition at line 778 of file cib_client.c.
void cib_dump_pending_callbacks | ( | void | ) |
Definition at line 816 of file cib_client.c.
cib_t* cib_file_new | ( | const char * | filename | ) |
Definition at line 646 of file cib_file.c.
void cib_free_callbacks | ( | cib_t * | cib | ) |
Free all callbacks for a CIB connection.
[in,out] | cib | CIB connection to clean up |
Definition at line 765 of file cib_client.c.
void cib_free_notify | ( | cib_t * | cib | ) |
Definition at line 743 of file cib_client.c.
cib_t* cib_native_new | ( | void | ) |
Definition at line 472 of file cib_native.c.
cib_t* cib_new | ( | void | ) |
Create a new CIB connection object.
Create a new live, remote, file, or shadow file CIB connection object based on the values of CIB-related environment variables (CIB_shadow, CIB_file, CIB_port, CIB_server, CIB_user, and CIB_passwd). The object will not be connected.
Definition at line 605 of file cib_client.c.
cib_t* cib_new_no_shadow | ( | void | ) |
Create a new CIB connection object, ignoring any active shadow CIB.
Create a new live, file, or remote CIB connection object based on the values of CIB-related environment variables (CIB_file, CIB_port, CIB_server, CIB_user, and CIB_passwd). The object will not be connected.
Definition at line 574 of file cib_client.c.
cib_t* cib_remote_new | ( | const char * | server, |
const char * | user, | ||
const char * | passwd, | ||
int | port, | ||
gboolean | encrypted | ||
) |
Definition at line 593 of file cib_remote.c.
cib_t* cib_shadow_new | ( | const char * | name | ) |
Definition at line 547 of file cib_client.c.
char* get_shadow_file | ( | const char * | name | ) |
Definition at line 487 of file cib_client.c.
int num_cib_op_callbacks | ( | void | ) |
Definition at line 798 of file cib_client.c.
void remove_cib_op_callback | ( | int | call_id, |
gboolean | all_callbacks | ||
) |
Definition at line 787 of file cib_client.c.