diff options
author | Tim Potter <tpot@samba.org> | 1999-07-22 04:41:00 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 1999-07-22 04:41:00 +0000 |
commit | 3c95cd4caecd2f5d1264e1c2a3e10368b3cfa2d5 (patch) | |
tree | 04d83e27f49c57186351abfa4ed96259ce9355ec | |
parent | 49f384231d23180351782a09bc885b94cf3d0d58 (diff) | |
download | samba-3c95cd4caecd2f5d1264e1c2a3e10368b3cfa2d5.tar.gz samba-3c95cd4caecd2f5d1264e1c2a3e10368b3cfa2d5.tar.bz2 samba-3c95cd4caecd2f5d1264e1c2a3e10368b3cfa2d5.zip |
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)
-rw-r--r-- | source3/include/vfs.h | 9 |
1 files changed, 9 insertions, 0 deletions
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 */ |