diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-12-13 10:48:21 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:07:22 -0500 |
commit | fbd8c61ff7a7c41d16c400ddb87ad290f4af167d (patch) | |
tree | f8755bbce13d03e39e58c86ba6a541d1ff1cd8c3 /source4/include/smb_interfaces.h | |
parent | e08e2645de81a89902adcd84e405bfc5baf1fab6 (diff) | |
download | samba-fbd8c61ff7a7c41d16c400ddb87ad290f4af167d.tar.gz samba-fbd8c61ff7a7c41d16c400ddb87ad290f4af167d.tar.bz2 samba-fbd8c61ff7a7c41d16c400ddb87ad290f4af167d.zip |
r4173: - new t2open code, that can cope with "create with EAs". Many thanks
to kukks on #samba-technical for the sniffs that allowed me to work
this out
- much simpler ntvfs open generic mapping code
- added t2open create with EA torture test to RAW-OPEN test
(This used to be commit a56d95ad89b4f32a05974c4fe9a816d67aa369e3)
Diffstat (limited to 'source4/include/smb_interfaces.h')
-rw-r--r-- | source4/include/smb_interfaces.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/include/smb_interfaces.h b/source4/include/smb_interfaces.h index 4b767c8d70..4ba8ea3442 100644 --- a/source4/include/smb_interfaces.h +++ b/source4/include/smb_interfaces.h @@ -1133,6 +1133,7 @@ union smb_open { struct { uint16_t flags; uint16_t open_mode; + uint16_t search_attrs; uint16_t file_attrs; time_t write_time; uint16_t open_func; @@ -1152,7 +1153,7 @@ union smb_open { uint16_t ftype; uint16_t devstate; uint16_t action; - uint32_t unknown; + uint32_t file_id; } out; } t2open; @@ -1161,7 +1162,7 @@ union smb_open { enum smb_open_level level; struct { - uint16_t flags; + uint16_t open_mode; uint16_t search_attrs; const char *fname; } in; |