s3:smbd: remove deprecated handling of "profile acls = yes"
[Samba.git] / ctdb / server / ipalloc_private.h
blob1f7385e4c476270899cb01f66fea49fc19c10674
1 /*
2 CTDB IP takeover code
4 Copyright (C) Ronnie Sahlberg 2007
5 Copyright (C) Andrew Tridgell 2007
6 Copyright (C) Martin Schwenke 2015
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, see <http://www.gnu.org/licenses/>.
22 #ifndef __CTDB_IPALLOC_PRIVATE_H__
23 #define __CTDB_IPALLOC_PRIVATE_H__
25 #include "protocol/protocol.h"
27 #include "server/ipalloc.h"
29 struct ipalloc_state {
30 uint32_t num;
32 /* Arrays with data for each node */
33 struct ctdb_public_ip_list *available_public_ips;
34 struct ctdb_public_ip_list *known_public_ips;
35 struct bitmap *noiphost;
37 struct public_ip_list *all_ips;
38 enum ipalloc_algorithm algorithm;
39 bool no_ip_failback;
40 bool no_ip_takeover;
41 bool no_ip_host_on_all_disabled;
42 uint32_t *force_rebalance_nodes;
45 bool can_node_takeover_ip(struct ipalloc_state *ipalloc_state,
46 int32_t pnn,
47 struct public_ip_list *ip);
48 int node_ip_coverage(int32_t pnn, struct public_ip_list *ips);
49 int find_takeover_node(struct ipalloc_state *ipalloc_state,
50 struct public_ip_list *ip);
52 void unassign_unsuitable_ips(struct ipalloc_state *ipalloc_state);
53 void basic_allocate_unassigned(struct ipalloc_state *ipalloc_state);
55 bool ipalloc_nondeterministic(struct ipalloc_state *ipalloc_state);
56 bool ipalloc_deterministic(struct ipalloc_state *ipalloc_state);
57 bool ipalloc_lcp2(struct ipalloc_state *ipalloc_state);
59 #endif /* __CTDB_IPALLOC_PRIVATE_H__ */