diff options
author | Luke Leighton <lkcl@samba.org> | 1997-10-12 17:07:35 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1997-10-12 17:07:35 +0000 |
commit | 78f6bc4eba9f6d68c31b1c7e35243a1b81619b0d (patch) | |
tree | 8def7586d1b5725ac8bab757f43c7263e505612e /source3/include | |
parent | 60575a888aebec898fdaf0f6c0c8269607b2571f (diff) | |
download | samba-78f6bc4eba9f6d68c31b1c7e35243a1b81619b0d.tar.gz samba-78f6bc4eba9f6d68c31b1c7e35243a1b81619b0d.tar.bz2 samba-78f6bc4eba9f6d68c31b1c7e35243a1b81619b0d.zip |
updated rpc header reply: callid wrong; alloc hint a uint32 not a uint16.
still doesn't get rid of the netlogon trans2 request with zero data.
(This used to be commit 0cf67955f09d99c452bfc3fdde00dcea98e21db1)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index 62351da187..58dfc141bd 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -477,7 +477,7 @@ typedef struct rpc_hdr_info uint8 minor; /* 0 - RPC minor version */ uint8 pkt_type; /* 2 - RPC response packet */ uint8 frag; /* 3 - first frag + last frag */ - uint32 pack_type; /* 0x0000 0010 - packed data representation */ + uint32 pack_type; /* 0x1000 0000 - packed data representation */ uint16 frag_len; /* fragment length - data size (bytes) inc header and tail. */ uint16 auth_len; /* 0 - authentication length */ uint32 call_id; /* call identifier. matches 12th uint32 of incoming RPC data. */ |