mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
b93e65eaf7
These are important for testing, since we can easily tell if we leak memory if there are outstanding allocations after calling these. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> (This used to be ctdb commit 18a212aa40d0ff9ff59775c6fcf9dc973e991460)
10 lines
305 B
C
10 lines
305 B
C
#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 */
|