diff options
author | Andrew Tridgell <tridge@samba.org> | 2008-05-21 22:51:21 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2008-05-21 22:51:21 +1000 |
commit | aed93a238e13247945073921d91408c91ae210c3 (patch) | |
tree | ac3592895cf5f26e6d3690b509dc0332dbfca6af /source4/libcli/raw | |
parent | 4d39976dddf2adf6a0d659050c3a21a6e0ff8ab2 (diff) | |
download | samba-aed93a238e13247945073921d91408c91ae210c3.tar.gz samba-aed93a238e13247945073921d91408c91ae210c3.tar.bz2 samba-aed93a238e13247945073921d91408c91ae210c3.zip |
fixed SMB2 flush call, and added flush to gentest_smb2
(This used to be commit c52fe1fe1c77636d87355d3c4baa66e052fe9008)
Diffstat (limited to 'source4/libcli/raw')
-rw-r--r-- | source4/libcli/raw/interfaces.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source4/libcli/raw/interfaces.h b/source4/libcli/raw/interfaces.h index 149b91916a..3370021d48 100644 --- a/source4/libcli/raw/interfaces.h +++ b/source4/libcli/raw/interfaces.h @@ -2156,8 +2156,12 @@ union smb_flush { enum smb_flush_level level; struct { union smb_handle file; - uint32_t unknown; + uint16_t reserved1; + uint32_t reserved2; } in; + struct { + uint16_t reserved; + } out; } smb2; }; |