2 * Unix SMB/CIFS implementation.
5 * Copyright (C) Volker Lendecke 2014
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 struct smb2_lease_key
;
27 struct leases_db_file
;
29 bool leases_db_init(bool read_only
);
30 NTSTATUS
leases_db_add(const struct GUID
*client_guid
,
31 const struct smb2_lease_key
*lease_key
,
32 const struct file_id
*id
,
33 const char *servicepath
,
35 const char *stream_name
);
36 NTSTATUS
leases_db_del(const struct GUID
*client_guid
,
37 const struct smb2_lease_key
*lease_key
,
38 const struct file_id
*id
);
39 NTSTATUS
leases_db_parse(const struct GUID
*client_guid
,
40 const struct smb2_lease_key
*lease_key
,
41 void (*parser
)(uint32_t num_files
,
42 const struct leases_db_file
*files
,
45 NTSTATUS
leases_db_rename(const struct GUID
*client_guid
,
46 const struct smb2_lease_key
*lease_key
,
47 const struct file_id
*id
,
48 const char *servicepath_new
,
49 const char *filename_new
,
50 const char *stream_name_new
);
51 NTSTATUS
leases_db_copy_file_ids(TALLOC_CTX
*mem_ctx
,
53 const struct leases_db_file
*files
,
54 struct file_id
**pp_ids
);
55 #endif /* _LEASES_DB_H_ */