diff options
author | Luke Leighton <lkcl@samba.org> | 1998-10-14 06:29:20 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-10-14 06:29:20 +0000 |
commit | 935dc98f6670ba630bd2086ef9eddcc94a0562e2 (patch) | |
tree | 7e6fce2b60b7687057824dcc04aa8f76e649969c /source3/include | |
parent | 99208208fa37483f2a97c004355628423e0c40eb (diff) | |
download | samba-935dc98f6670ba630bd2086ef9eddcc94a0562e2.tar.gz samba-935dc98f6670ba630bd2086ef9eddcc94a0562e2.tar.bz2 samba-935dc98f6670ba630bd2086ef9eddcc94a0562e2.zip |
dce/rpc
(This used to be commit 69f5f9f88935de1f63ffc9aa19c0629b395e66e6)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 1 | ||||
-rw-r--r-- | source3/include/proto.h | 3 | ||||
-rw-r--r-- | source3/include/rpc_dce.h | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index 0da4b40c18..53674fe80a 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -121,6 +121,7 @@ struct cli_state { unsigned char ntlmssp_hash[258]; /* ntlmssp data. */ uint32 ntlmssp_cli_flgs; /* ntlmssp client flags */ uint32 ntlmssp_srv_flgs; /* ntlmssp server flags */ + uint32 ntlmssp_seq_num; /* ntlmssp sequence number */ DOM_CRED clnt_cred; /* Client credential. */ fstring mach_acct; /* MYNAME$. */ fstring srv_name_slash; /* \\remote server. */ diff --git a/source3/include/proto.h b/source3/include/proto.h index e594780535..8a0ff12ed9 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1558,7 +1558,8 @@ void make_rpc_hdr_autha(RPC_HDR_AUTHA *rai, void smb_io_rpc_hdr_autha(char *desc, RPC_HDR_AUTHA *rai, prs_struct *ps, int depth); void make_rpc_hdr_auth(RPC_HDR_AUTH *rai, uint8 auth_type, uint8 auth_level, - uint8 stub_type_len); + uint8 stub_type_len, + uint32 ptr); void smb_io_rpc_hdr_auth(char *desc, RPC_HDR_AUTH *rai, prs_struct *ps, int depth); void make_rpc_auth_verifier(RPC_AUTH_VERIFIER *rav, char *signature, uint32 msg_type); diff --git a/source3/include/rpc_dce.h b/source3/include/rpc_dce.h index 982ec1f52b..c6499853d6 100644 --- a/source3/include/rpc_dce.h +++ b/source3/include/rpc_dce.h @@ -170,7 +170,7 @@ typedef struct rpc_hdr_auth_info uint8 stub_type_len; /* don't know */ uint8 padding; /* padding */ - uint32 unknown; /* 0x0014a0c0 */ + uint32 unknown; /* pointer */ } RPC_HDR_AUTH; |