50f30ec27683460966d216aac0c7651830a8aa4f
[gd/samba-autobuild/.git] / source4 / ntvfs / common / brlock.h
1 /* 
2    Unix SMB/CIFS implementation.
3
4    generic byte range locking code - common include
5
6    Copyright (C) Andrew Tridgell 2006
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include "libcli/libcli.h"
23
24 struct brlock_ops {
25         struct brl_context *(*brl_init)(TALLOC_CTX *, struct server_id , 
26                                         struct messaging_context *);
27         struct brl_handle *(*brl_create_handle)(TALLOC_CTX *, struct ntvfs_handle *, DATA_BLOB *);
28         NTSTATUS (*brl_lock)(struct brl_context *,
29                              struct brl_handle *,
30                              uint16_t ,
31                              uint64_t , uint64_t , 
32                              enum brl_type ,
33                              void *);
34         NTSTATUS (*brl_unlock)(struct brl_context *,
35                                struct brl_handle *, 
36                                uint16_t ,
37                                uint64_t , uint64_t );
38         NTSTATUS (*brl_remove_pending)(struct brl_context *,
39                                        struct brl_handle *, 
40                                        void *);
41         NTSTATUS (*brl_locktest)(struct brl_context *,
42                                  struct brl_handle *,
43                                  uint16_t , 
44                                  uint64_t , uint64_t , 
45                                  enum brl_type );
46         NTSTATUS (*brl_close)(struct brl_context *,
47                               struct brl_handle *);
48 };
49
50
51 void brl_set_ops(const struct brlock_ops *new_ops);
52 void brl_tdb_init_ops(void);
53 void brl_ctdb_init_ops(void);
54