ctdb: add ctdb_canonicalize_ip_inplace() helper
[Samba.git] / ctdb / tests / src / cluster_wait.h
blobe0c64ccbfc65d76f283e3cad7f17961d61f7ea6a
1 /*
2 Cluster wide synchronization
4 Copyright (C) Amitay Isaacs 2015
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #ifndef __CLUSTER_WAIT_H__
21 #define __CLUSTER_WAIT_H__
23 struct tevent_req *cluster_wait_send(TALLOC_CTX *mem_ctx,
24 struct tevent_context *ev,
25 struct ctdb_client_context *client,
26 uint32_t num_nodes);
28 bool cluster_wait_recv(struct tevent_req *req, int *perr);
30 #endif /* __CLUSTER_WAIT_H__ */