1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-22 05:57:43 +03:00

Added service name to vfs_connection_struct.

Added a vfs_options struct for passing smb.conf parameters to VFS
modules.
This commit is contained in:
Tim Potter -
parent bf61fdace8
commit 38cc03ae0c

View File

@ -80,6 +80,7 @@ struct vfs_connection_struct {
pstring dirpath;
pstring connectpath;
pstring origpath;
pstring service;
/* Information on user who *opened* this connection */
@ -134,4 +135,12 @@ struct vfs_ops {
int (*utime)(char *path, struct utimbuf *times);
};
/* VFS options for configuration file */
struct vfs_options {
struct vfs_options *prev, *next;
char *name;
char *value;
};
#endif /* _VFS_H */