From fbd8c61ff7a7c41d16c400ddb87ad290f4af167d Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 13 Dec 2004 10:48:21 +0000 Subject: 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) --- source4/include/smb_interfaces.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source4/include/smb_interfaces.h') 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; -- cgit