diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-02-16 22:10:48 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-02-16 22:10:48 +0000 |
commit | b7868582413a346a71997b23587450588d59b9d0 (patch) | |
tree | ef04fab435f60ebc833c0f2bcddb1c843c062236 /source3/include | |
parent | 12074e79796a0e861825b748edc59c7af454ff79 (diff) | |
download | samba-b7868582413a346a71997b23587450588d59b9d0.tar.gz samba-b7868582413a346a71997b23587450588d59b9d0.tar.bz2 samba-b7868582413a346a71997b23587450588d59b9d0.zip |
Add the 'session key' output of the NTLMSSP exchange to the cli struct, so
it can be used for 'net rpc join'.
Also fix a bug in our server-side NTLMSSP code - a client without any domain
trust links to us may calculate the NTLMv2 response with "" as the domain.
Andrew Bartlett
(This used to be commit ddaa42423bc952e59b95362f5f5aa7cca10d1ad4)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index ddb1772c26..73e29a1fff 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -122,6 +122,10 @@ struct cli_state { smb_sign_info sign_info; + /* the session key for this CLI, outside + any per-pipe authenticaion */ + unsigned char user_session_key[16]; + /* * Only used in NT domain calls. */ |