diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-06-29 22:16:58 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:09:39 -0500 |
commit | d63dd113ae2c7f4f6d64def00a488548e805bc7e (patch) | |
tree | f8a7fe3514d3108cb345cd4258fcad8cd53c0a7a /source4/libcli/raw | |
parent | 5b19070ac701dfc24ed77688373a9f071792b93c (diff) | |
download | samba-d63dd113ae2c7f4f6d64def00a488548e805bc7e.tar.gz samba-d63dd113ae2c7f4f6d64def00a488548e805bc7e.tar.bz2 samba-d63dd113ae2c7f4f6d64def00a488548e805bc7e.zip |
r16699: the layout of SMB2 Read and Write is identical...
so we know that the 9th bytes is just uninitialized padding
metze
(This used to be commit f97a21b970ed23973cced2c67b5bc9ecd7afee88)
Diffstat (limited to 'source4/libcli/raw')
-rw-r--r-- | source4/libcli/raw/interfaces.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source4/libcli/raw/interfaces.h b/source4/libcli/raw/interfaces.h index 8b144779f4..3665af9548 100644 --- a/source4/libcli/raw/interfaces.h +++ b/source4/libcli/raw/interfaces.h @@ -1649,7 +1649,6 @@ union smb_read { /* struct smb2_handle handle; */ uint64_t unknown1; /* 0x0000000000000000 */ uint64_t unknown2; /* 0x0000000000000000 */ - uint8_t _bug; } in; struct { /* static body buffer 16 (0x10) bytes */ @@ -1771,11 +1770,10 @@ union smb_write { } in; struct { /* static body buffer 17 (0x11) bytes */ - /* uint16_t buffer_code; 0x11 */ + /* uint16_t buffer_code; 0x11 = 0x10 + 1*/ uint16_t _pad; uint32_t nwritten; uint64_t unknown1; /* 0x0000000000000000 */ - uint8_t _bug; } out; } smb2; }; |