blob: 89a04608eca7bba9207eead4abb05ece2a6435e7 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef _LIBCTDB_MESSAGE_H
#define _LIBCTDB_MESSAGE_H
struct message_handler_info;
struct ctdb_connection;
struct ctdb_req_header;
void deliver_message(struct ctdb_connection *ctdb, struct ctdb_req_header *hdr);
void remove_message_handlers(struct ctdb_connection *ctdb);
#endif /* _LIBCTDB_MESSAGE_H */
|