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 {
struct server_id ( * cluster_id ) ( struct cluster_ops * ops , uint32_t id ) ;
const char * ( * cluster_id_string ) ( struct cluster_ops * ops ,
TALLOC_CTX * , struct server_id ) ;
2007-01-20 03:48:31 +03:00
struct tdb_wrap * ( * cluster_tdb_tmp_open ) ( struct cluster_ops * ,
TALLOC_CTX * , const char * , int ) ;
2007-02-08 03:58:17 +03:00
void * ( * backend_handle ) ( struct cluster_ops * ) ;
NTSTATUS ( * message_init ) ( struct cluster_ops * ops ,
struct messaging_context * msg , struct server_id server ,
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 ) ;
2007-01-19 06:53:37 +03:00
void * private ; /* backend state */
} ;
void cluster_set_ops ( struct cluster_ops * new_ops ) ;
void cluster_local_init ( void ) ;
# endif