diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-12-28 21:50:31 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:16:46 -0500 |
commit | bcf5c751cbe203c00814642e26440cf88f300bce (patch) | |
tree | 28b34332e97db9a922ebaf2e51a042d629a6aa06 /source/include/smb.h | |
parent | 48798b5e57fcb2ee7debfe9d5178adef37907f92 (diff) | |
download | samba-bcf5c751cbe203c00814642e26440cf88f300bce.tar.gz samba-bcf5c751cbe203c00814642e26440cf88f300bce.tar.xz samba-bcf5c751cbe203c00814642e26440cf88f300bce.zip |
r20394: This is a *VERY* early start of my work on notify.
Checking in because Jeremy was bugging me. Potentially this becomes quite
intrusive, I'm not sure if I should open a temporary branch for this.
Jeremy, Jerry, do you think 3_0 is the right place for this?
Volker
Diffstat (limited to 'source/include/smb.h')
-rw-r--r-- | source/include/smb.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/source/include/smb.h b/source/include/smb.h index 0e06ce1d791..c4d46600288 100644 --- a/source/include/smb.h +++ b/source/include/smb.h @@ -428,6 +428,16 @@ struct vfs_fsp_data { */ }; +struct notify_change { + uint32_t action; + char *name; +}; + +struct notify_changes { + uint32_t num_changes; + struct notify_change *changes; +}; + typedef struct files_struct { struct files_struct *next, *prev; int fnum; @@ -470,6 +480,8 @@ typedef struct files_struct { struct vfs_fsp_data *vfs_extension; FAKE_FILE_HANDLE *fake_file_handle; + + struct notify_changes *notify; } files_struct; #include "ntquotas.h" @@ -1343,6 +1355,20 @@ struct bitmap { #define FILE_NOTIFY_CHANGE_SECURITY 0x100 #define FILE_NOTIFY_CHANGE_FILE_NAME 0x200 +#define FILE_NOTIFY_CHANGE_NAME \ + (FILE_NOTIFY_CHANGE_FILE_NAME|FILE_NOTIFY_CHANGE_DIR_NAME) + +/* change notify action results */ +#define NOTIFY_ACTION_ADDED 1 +#define NOTIFY_ACTION_REMOVED 2 +#define NOTIFY_ACTION_MODIFIED 3 +#define NOTIFY_ACTION_OLD_NAME 4 +#define NOTIFY_ACTION_NEW_NAME 5 +#define NOTIFY_ACTION_ADDED_STREAM 6 +#define NOTIFY_ACTION_REMOVED_STREAM 7 +#define NOTIFY_ACTION_MODIFIED_STREAM 8 + + /* where to find the base of the SMB packet proper */ #define smb_base(buf) (((char *)(buf))+4) |