From 3c95cd4caecd2f5d1264e1c2a3e10368b3cfa2d5 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Thu, 22 Jul 1999 04:41:00 +0000 Subject: Added service name to vfs_connection_struct. Added a vfs_options struct for passing smb.conf parameters to VFS modules. (This used to be commit 38cc03ae0cccb359e31c8dca65606b66ff473762) --- source3/include/vfs.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/source3/include/vfs.h b/source3/include/vfs.h index 8e4c6454f5..d4ca8823ca 100644 --- a/source3/include/vfs.h +++ b/source3/include/vfs.h @@ -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 */ -- cgit