summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2006-06-21 02:31:12 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:18:54 -0500
commit54ea3c23e3bfd25008198e85fdcc1f48b0325eab (patch)
treef3aa0f84b563d6b6dc9a8cd7f682fffa5bf22e96 /source3/include
parent607f9ffc8e3b4018741db277d9240b2b19c5379e (diff)
downloadsamba-54ea3c23e3bfd25008198e85fdcc1f48b0325eab.tar.gz
samba-54ea3c23e3bfd25008198e85fdcc1f48b0325eab.tar.bz2
samba-54ea3c23e3bfd25008198e85fdcc1f48b0325eab.zip
r16435: Add in the uid info that Jerry needs into the
share_mode struct. Allows us to know the unix uid of the opener of the file/directory. Needed for info level queries on open files. Jeremy. (This used to be commit d929323d6f513902381369d77bcd7b714346d713)
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/smb.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h
index 41ffce1a15..5aa06347f8 100644
--- a/source3/include/smb.h
+++ b/source3/include/smb.h
@@ -671,6 +671,7 @@ struct share_mode_entry {
SMB_DEV_T dev;
SMB_INO_T inode;
unsigned long share_file_id;
+ uint32 uid; /* uid of file opener. */
};
/* oplock break message definition - linearization of share_mode_entry.
@@ -687,10 +688,11 @@ Offset Data length.
28 SMB_DEV_T dev 8 bytes.
36 SMB_INO_T inode 8 bytes
44 unsigned long file_id 4 bytes
-48
+48 uint32 uid 4 bytes
+52
*/
-#define MSG_SMB_SHARE_MODE_ENTRY_SIZE 48
+#define MSG_SMB_SHARE_MODE_ENTRY_SIZE 52
struct share_mode_lock {
const char *servicepath; /* canonicalized. */