source: vendor/current/ctdb/server/ipalloc_private.h

Last change on this file was 988, checked in by Silvan Scherrer, 9 years ago

Samba Server: update vendor to version 4.4.3

File size: 1.5 KB
Line 
1/*
2 CTDB IP takeover code
3
4 Copyright (C) Ronnie Sahlberg 2007
5 Copyright (C) Andrew Tridgell 2007
6 Copyright (C) Martin Schwenke 2015
7
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.
12
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.
17
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/>.
20*/
21
22#ifndef __CTDB_IPALLOC_PRIVATE_H__
23#define __CTDB_IPALLOC_PRIVATE_H__
24
25#include "protocol/protocol.h"
26
27#include "server/ipalloc.h"
28
29bool can_node_takeover_ip(struct ipalloc_state *ipalloc_state,
30 int32_t pnn,
31 struct public_ip_list *ip);
32int node_ip_coverage(int32_t pnn, struct public_ip_list *ips);
33int find_takeover_node(struct ipalloc_state *ipalloc_state,
34 struct public_ip_list *ip);
35
36void unassign_unsuitable_ips(struct ipalloc_state *ipalloc_state);
37void basic_allocate_unassigned(struct ipalloc_state *ipalloc_state);
38
39bool ipalloc_nondeterministic(struct ipalloc_state *ipalloc_state);
40bool ipalloc_deterministic(struct ipalloc_state *ipalloc_state);
41bool ipalloc_lcp2(struct ipalloc_state *ipalloc_state);
42
43#endif /* __CTDB_IPALLOC_PRIVATE_H__ */
Note: See TracBrowser for help on using the repository browser.