1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00
samba-mirror/source4/ntvfs/simple/svfs.h
Stefan Metzmacher 9ef33f5f5c r15734: This is a major change to the NTVFS subsystem:
- to use a struct ntvfs_handle instead of a uint16_t fnum.
  (to make it independend from the frontend protocol)
- the allocation of handles now is provided by the frontend
  (smbsrv_*) via callbacks and not by each backend module
- this also makes sure that file handles are only passed
  to the ntvfs subsystem when the tcon and session matches,
  so modules can rely on this and need to check this.
- this allows multiple modules in the ntvfs module chain
  to allocate file handles. This can be used for virtual
  files like "\\$Extend\\$Quota:$Q:$INDEX_ALLOCATION"...
- also this will make SMB2 with 128 bit file handles possible

metze
(This used to be commit 287fc1c22d)
2007-10-10 14:08:10 -05:00

39 lines
642 B
C

struct svfs_private {
struct ntvfs_module_context *ntvfs;
/* the base directory */
char *connectpath;
/* a linked list of open searches */
struct search_state *search;
/* next available search handle */
uint16_t next_search_handle;
struct svfs_file *open_files;
};
struct svfs_dir {
unsigned int count;
char *unix_dir;
struct svfs_dirfile {
char *name;
struct stat st;
} *files;
};
struct svfs_file {
struct svfs_file *next, *prev;
int fd;
struct ntvfs_handle *handle;
char *name;
};
struct search_state {
struct search_state *next, *prev;
uint16_t handle;
unsigned int current_index;
struct svfs_dir *dir;
};