1CONFDB_KEY_GET(3) Corosync Cluster Engine Programmer's ManualCONFDB_KEY_GET(3)
2
3
4
6 confdb_key_get - Retreive key value from the Configuration Database
7
9 #include <corosync/confdb.h>
10
11 cs_error_t confdb_key_get (confdb_handle_t handle, hdb_handle_t par‐
12 ent_object_handle , void *key_name , size_t key_name_len , void *value
13 , size_t *value_len);
14
15
17 The confdb_key_get function retreive key value for key with given name
18 from specified parent object. Unlike objects, keys do not have han‐
19 dles, so you can't go directly to a non-unique key without using the
20 confdb_key_iter function, so confdb_key_get returns only first found
21 key.
22
24 This call returns the CONFDB_OK value if successful, otherwise an error
25 is returned.
26
28 The errors are undocumented.
29
31 confdb_overview(8), confdb_initialize(3), confdb_finalize(3),
32 confdb_dispatch(3), confdb_object_create(3), confdb_object_destroy(3),
33 confdb_object_parent_get(3), confdb_key_create(3),
34 confdb_key_delete(3), confdb_key_get(3), confdb_key_replace(3),
35 confdb_object_find_start(3), confdb_object_find(3),
36 confdb_object_iter_start(3), confdb_object_iter(3),
37 confdb_key_iter_start(3), confdb_key_iter(3),
38
39corosync Man Page 2012-11-07 CONFDB_KEY_GET(3)