diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-11-17 06:27:18 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:46:23 -0500 |
commit | c3cd4a0087d61a147f4a2f06f1668230f6704e7c (patch) | |
tree | 08f3177671ea4963943e41cfb7aff60d14841f9b /source4/include | |
parent | 7a43b32c3b6aeae3572c810fef243d883fe74f28 (diff) | |
download | samba-c3cd4a0087d61a147f4a2f06f1668230f6704e7c.tar.gz samba-c3cd4a0087d61a147f4a2f06f1668230f6704e7c.tar.bz2 samba-c3cd4a0087d61a147f4a2f06f1668230f6704e7c.zip |
r11756: split out the parsers for the pass-through levels of QFSINFO and
QFILEINFO levels in trans2, so they can be shared with SMB2
(This used to be commit 5ca2d609e6a3766ebd07763f850ecc62209a7db7)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/smb_interfaces.h | 1 | ||||
-rw-r--r-- | source4/include/trans2.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/source4/include/smb_interfaces.h b/source4/include/smb_interfaces.h index e91d2f7c53..f078134194 100644 --- a/source4/include/smb_interfaces.h +++ b/source4/include/smb_interfaces.h @@ -315,6 +315,7 @@ enum smb_fileinfo_level { RAW_FILEINFO_ACCESS_INFORMATION = SMB_QFILEINFO_ACCESS_INFORMATION, RAW_FILEINFO_NAME_INFORMATION = SMB_QFILEINFO_NAME_INFORMATION, RAW_FILEINFO_POSITION_INFORMATION = SMB_QFILEINFO_POSITION_INFORMATION, + RAW_FILEINFO_FULL_EA_INFORMATION = SMB_QFILEINFO_FULL_EA_INFORMATION, RAW_FILEINFO_MODE_INFORMATION = SMB_QFILEINFO_MODE_INFORMATION, RAW_FILEINFO_ALIGNMENT_INFORMATION = SMB_QFILEINFO_ALIGNMENT_INFORMATION, RAW_FILEINFO_ALL_INFORMATION = SMB_QFILEINFO_ALL_INFORMATION, diff --git a/source4/include/trans2.h b/source4/include/trans2.h index a3f6e28a2a..6768476e1d 100644 --- a/source4/include/trans2.h +++ b/source4/include/trans2.h @@ -147,6 +147,7 @@ Found 8 aliased levels #define SMB_QFILEINFO_ACCESS_INFORMATION 1008 #define SMB_QFILEINFO_NAME_INFORMATION 1009 #define SMB_QFILEINFO_POSITION_INFORMATION 1014 +#define SMB_QFILEINFO_FULL_EA_INFORMATION 1015 /* only on SMB2 */ #define SMB_QFILEINFO_MODE_INFORMATION 1016 #define SMB_QFILEINFO_ALIGNMENT_INFORMATION 1017 #define SMB_QFILEINFO_ALL_INFORMATION 1018 |