2007-01-19 06:53:37 +03:00
/*
Unix SMB / CIFS implementation .
private 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-19 06:53:37 +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-19 06:53:37 +03:00
*/
# ifndef _CLUSTER_PRIVATE_H_
# define _CLUSTER_PRIVATE_H_
struct cluster_ops {
2008-02-04 09:51:38 +03:00
struct server_id ( * cluster_id ) ( struct cluster_ops * ops , uint64_t id , uint32_t id2 ) ;
2013-04-11 11:42:15 +04:00
struct db_context * ( * cluster_db_tmp_open ) ( struct cluster_ops * ,
TALLOC_CTX * ,
2007-12-14 00:46:23 +03:00
struct loadparm_context * ,
const char * , int ) ;
2007-02-08 03:58:17 +03:00
void * ( * backend_handle ) ( struct cluster_ops * ) ;
NTSTATUS ( * message_init ) ( struct cluster_ops * ops ,
2011-05-03 04:40:33 +04:00
struct imessaging_context * msg , struct server_id server ,
2007-02-08 03:58:17 +03:00
cluster_message_fn_t handler ) ;
NTSTATUS ( * message_send ) ( struct cluster_ops * ops ,
2007-02-09 04:52:13 +03:00
struct server_id server , DATA_BLOB * data ) ;
2009-02-02 11:36:58 +03:00
void * private_data ; /* backend state */
2007-01-19 06:53:37 +03:00
} ;
void cluster_set_ops ( struct cluster_ops * new_ops ) ;
void cluster_local_init ( void ) ;
# endif