1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/ctdb/libctdb/messages.h
Rusty Russell b93e65eaf7 libctdb: implement ctdb_disconnect and ctdb_detachdb
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)
2010-06-18 15:35:52 +09:30

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 */