2007-01-10 14:16:11 +03:00
/*
Unix SMB / CIFS implementation .
structures for clustering
Copyright ( C ) Andrew Tridgell 2006
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
2007-07-10 06:07:03 +04:00
the Free Software Foundation ; either version 3 of the License , or
2007-01-10 14:16:11 +03:00
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
2007-07-10 06:07:03 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2007-01-10 14:16:11 +03:00
*/
# ifndef __CLUSTER_H__
# define __CLUSTER_H__
/*
test for same cluster id
*/
# define cluster_id_equal(id1, id2) ((id1)->id == (id2)->id && (id1)->node == (id2)->node)
2007-02-08 03:58:17 +03:00
/*
test for same cluster node
*/
# define cluster_node_equal(id1, id2) ((id1)->node == (id2)->node)
struct messaging_context ;
2007-02-08 05:59:58 +03:00
typedef void ( * cluster_message_fn_t ) ( struct messaging_context * , DATA_BLOB ) ;
2007-02-08 03:58:17 +03:00
2007-01-10 14:16:11 +03:00
/* prototypes */
struct server_id cluster_id ( uint32_t id ) ;
const char * cluster_id_string ( TALLOC_CTX * mem_ctx , struct server_id id ) ;
2007-01-20 03:48:31 +03:00
struct tdb_wrap * cluster_tdb_tmp_open ( TALLOC_CTX * mem_ctx , const char * dbname , int flags ) ;
2007-02-08 03:58:17 +03:00
void * cluster_backend_handle ( void ) ;
NTSTATUS cluster_message_init ( struct messaging_context * msg , struct server_id server ,
cluster_message_fn_t handler ) ;
2007-02-09 04:52:13 +03:00
NTSTATUS cluster_message_send ( struct server_id server , DATA_BLOB * data ) ;
2007-01-10 14:16:11 +03:00
# endif