s4:provision: set the correct nTSecurityDescriptor on CN=Builtin,... (bug #9481)
[Samba/gebeck_regimport.git] / source4 / ntvfs / cifs_posix_cli / cifsposix.h
blobbf9e588b74f2cdf1e535efbdb9e739c16728379c
2 struct cifspsx_private {
3 struct ntvfs_module_context *ntvfs;
5 /* the base directory */
6 char *connectpath;
8 /* a linked list of open searches */
9 struct search_state *search;
11 /* next available search handle */
12 uint16_t next_search_handle;
14 struct cifspsx_file *open_files;
17 struct cifspsx_dir {
18 unsigned int count;
19 char *unix_dir;
20 struct cifspsx_dirfile {
21 char *name;
22 struct stat st;
23 } *files;
26 struct cifspsx_file {
27 struct cifspsx_file *next, *prev;
28 int fd;
29 struct ntvfs_handle *handle;
30 char *name;
33 struct search_state {
34 struct search_state *next, *prev;
35 uint16_t handle;
36 unsigned int current_index;
37 struct cifspsx_dir *dir;