diff options
author | Jeremy Allison <jra@samba.org> | 2003-04-16 15:39:57 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-04-16 15:39:57 +0000 |
commit | 09a50497d1360659eb8bd1b9f4be510680267bd2 (patch) | |
tree | 37bfc1657e9b5b14d5d7aa4d0aa1608217f2acec /source3/include | |
parent | b5fd86aee1258b1964d460c4ad138c59d49e7691 (diff) | |
download | samba-09a50497d1360659eb8bd1b9f4be510680267bd2.tar.gz samba-09a50497d1360659eb8bd1b9f4be510680267bd2.tar.bz2 samba-09a50497d1360659eb8bd1b9f4be510680267bd2.zip |
Fixes to make SCHANNEL work in 3.0 against a W2K DC. Still need to fix
multi-PDU encode/decode with SCHANNEL. Also need to test against WNT DC.
Jeremy.
(This used to be commit ff66d4097088409205b6bad5124a78ef9946010d)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/rpc_dce.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/rpc_dce.h b/source3/include/rpc_dce.h index 22dae7ce36..b99639d68d 100644 --- a/source3/include/rpc_dce.h +++ b/source3/include/rpc_dce.h @@ -211,8 +211,8 @@ typedef struct rpc_hdr_auth_info /* RPC_AUTH_NETSEC_NEG */ typedef struct rpc_auth_netsec_neg_info { - uint32 unknown1; - uint32 unknown2; + uint32 type1; /* Always zero ? */ + uint32 type2; /* Types 0x3 and 0x13 seen. Check AcquireSecurityContext() docs.... */ fstring domain; /* calling workstations's domain */ fstring myname; /* calling workstation's name */ } RPC_AUTH_NETSEC_NEG; |