pacemaker  2.1.0-7c3f660
Scalable High-Availability cluster resource manager
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
remote_internal.h
Go to the documentation of this file.
1 /*
2  * Copyright 2013-2019 the Pacemaker project contributors
3  *
4  * The version control history for this file may have further details.
5  *
6  * This source code is licensed under the GNU Lesser General Public License
7  * version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
8  */
9 
10 #ifndef PE_REMOTE__H
11 # define PE_REMOTE__H
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 #include <glib.h> // gboolean
18 #include <libxml/tree.h> // xmlNode
19 #include <crm/pengine/status.h>
20 
21 bool xml_contains_remote_node(xmlNode *xml);
22 bool pe__is_remote_node(const pe_node_t *node);
23 bool pe__is_guest_node(const pe_node_t *node);
24 bool pe__is_guest_or_remote_node(const pe_node_t *node);
25 bool pe__is_bundle_node(const pe_node_t *node);
27  const pe_working_set_t *data_set);
29  const pe_resource_t *rsc);
30 void pe_foreach_guest_node(const pe_working_set_t *data_set, const pe_node_t *host,
31  void (*helper)(const pe_node_t*, void*), void *user_data);
32 xmlNode *pe_create_remote_xml(xmlNode *parent, const char *uname,
33  const char *container_id, const char *migrateable,
34  const char *is_managed, const char *start_timeout,
35  const char *server, const char *port);
36 
37 #ifdef __cplusplus
38 }
39 #endif
40 
41 #endif
pcmk__cpg_host_t host
Definition: cpg.c:49
bool pe__is_guest_or_remote_node(const pe_node_t *node)
Definition: remote.c:41
bool pe__is_bundle_node(const pe_node_t *node)
Definition: remote.c:47
void pe_foreach_guest_node(const pe_working_set_t *data_set, const pe_node_t *host, void(*helper)(const pe_node_t *, void *), void *user_data)
Definition: remote.c:120
bool pe__is_remote_node(const pe_node_t *node)
Definition: remote.c:25
xmlNode * pe_create_remote_xml(xmlNode *parent, const char *uname, const char *container_id, const char *migrateable, const char *is_managed, const char *start_timeout, const char *server, const char *port)
Definition: remote.c:156
pe_resource_t * pe__resource_contains_guest_node(const pe_working_set_t *data_set, const pe_resource_t *rsc)
Definition: remote.c:66
bool pe__is_guest_node(const pe_node_t *node)
Definition: remote.c:33
bool xml_contains_remote_node(xmlNode *xml)
Definition: remote.c:84
Cluster status and scheduling.
char uname[MAX_NAME]
Definition: cpg.c:50
bool pe__resource_is_remote_conn(const pe_resource_t *rsc, const pe_working_set_t *data_set)
Definition: remote.c:17