summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/include/vfs.h9
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 */