~ubuntu-branches/ubuntu/precise/corosync/precise-proposed

« back to all changes in this revision

Viewing changes to include/corosync/ipc_confdb.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Loschwitz
  • Date: 2011-10-19 14:32:18 UTC
  • mfrom: (1.1.6 upstream) (5.1.16 sid)
  • Revision ID: james.westby@ubuntu.com-20111019143218-ew8phl0raqyog844
Tags: 1.4.2-1
* Changed my email address in debian/control
* Add corosync-blackbox to the corosync package
* Imported Upstream version 1.4.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
        MESSAGE_REQ_CONFDB_KEY_CREATE_TYPED = 17,
60
60
        MESSAGE_REQ_CONFDB_KEY_GET_TYPED = 18,
61
61
        MESSAGE_REQ_CONFDB_KEY_ITER_TYPED = 19,
 
62
        MESSAGE_REQ_CONFDB_OBJECT_NAME_GET = 20,
62
63
};
63
64
 
64
65
enum res_confdb_types {
85
86
        MESSAGE_RES_CONFDB_KEY_GET_TYPED = 20,
86
87
        MESSAGE_RES_CONFDB_KEY_ITER_TYPED = 21,
87
88
        MESSAGE_RES_CONFDB_RELOAD_CALLBACK = 22,
 
89
        MESSAGE_RES_CONFDB_OBJECT_NAME_GET = 23,
88
90
};
89
91
 
90
92
 
114
116
        mar_uint64_t parent_object_handle __attribute__((aligned(8)));
115
117
};
116
118
 
 
119
struct req_lib_confdb_object_name_get {
 
120
        coroipc_request_header_t header __attribute__((aligned(8)));
 
121
        mar_uint64_t object_handle __attribute__((aligned(8)));
 
122
};
 
123
 
 
124
struct res_lib_confdb_object_name_get {
 
125
        coroipc_response_header_t header __attribute__((aligned(8)));
 
126
        mar_name_t object_name __attribute__((aligned(8)));
 
127
};
117
128
 
118
129
struct req_lib_confdb_key_create {
119
130
        coroipc_request_header_t header __attribute__((aligned(8)));