summaryrefslogtreecommitdiffstats
path: root/source/include
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-03-01 21:01:22 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:18:19 -0500
commitf0c8488d382ada32fabe79399f64ba1c6486d009 (patch)
treeae7a952ba0fdb8784f41954ecf2e647285cd5161 /source/include
parentf3a8048a628753990f9c5401b2bb50c19d4f66e3 (diff)
downloadsamba-f0c8488d382ada32fabe79399f64ba1c6486d009.tar.gz
samba-f0c8488d382ada32fabe79399f64ba1c6486d009.tar.xz
samba-f0c8488d382ada32fabe79399f64ba1c6486d009.zip
r21638: Change POSIX_UNLINK to allow clients to differentiate
between unlink/rmdir calls. Jeremy.
Diffstat (limited to 'source/include')
-rw-r--r--source/include/trans2.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/source/include/trans2.h b/source/include/trans2.h
index fb8e7716abe..89227c39d9b 100644
--- a/source/include/trans2.h
+++ b/source/include/trans2.h
@@ -604,7 +604,7 @@ number of entries sent will be zero.
#define SMB_POSIX_IGNORE_ACE_ENTRIES 0xFFFF
-/* Definition of parameter block of SMB_SET_POSIX_LOCK */
+/* Definition of data block of SMB_SET_POSIX_LOCK */
/*
[2 bytes] lock_type - 0 = Read, 1 = Write, 2 = Unlock
[2 bytes] lock_flags - 1 = Wait (only valid for setlock)
@@ -643,7 +643,7 @@ number of entries sent will be zero.
#define SMB_O_NOFOLLOW 0x400
#define SMB_O_DIRECT 0x800
-/* Definition of request parameter block for SMB_POSIX_PATH_OPEN */
+/* Definition of request data block for SMB_POSIX_PATH_OPEN */
/*
[4 bytes] flags (as smb_ntcreate_Flags).
[4 bytes] open_mode
@@ -660,4 +660,12 @@ number of entries sent will be zero.
[n bytes] - info level reply - if available.
*/
+/* Definition of request data block for SMB_POSIX_UNLINK */
+/*
+ [2 bytes] flags (defined below).
+*/
+
+#define SMB_POSIX_UNLINK_FILE_TARGET 0
+#define SMB_POSIX_UNLINK_DIRECTORY_TARGET 1
+
#endif