const struct tsocket_address *local_address;
const struct tsocket_address *remote_address;
const char *remote_hostname;
- bool has_ctdb_public_ip;
+ bool has_cluster_movable_ip;
enum protocol_types protocol;
return NT_STATUS_INTERNAL_ERROR;
}
- xconn->has_ctdb_public_ip = ctdbd_find_in_public_ips(ips, srv);
+ xconn->has_cluster_movable_ip = ctdbd_find_in_public_ips(ips, srv);
TALLOC_FREE(ips);
- if (xconn->has_ctdb_public_ip) {
- DBG_DEBUG("CTDB public ip on %s\n",
+ if (xconn->has_cluster_movable_ip) {
+ DBG_DEBUG("cluster movable IP on %s\n",
smbXsrv_connection_dbg(xconn));
}
}
smbXsrv_connection_dbg(xconn), num_ok,
reason, location);
- if (xconn->has_ctdb_public_ip) {
+ if (xconn->has_cluster_movable_ip) {
/*
- * If the connection has a ctdb public address
+ * If the connection has a movable cluster public address
* we disconnect all client connections,
* as the public address might be moved to
* a different node.