diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-04-07 07:18:37 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:51:06 -0500 |
commit | a8a42e7f53c67b09954ea2232830c07c6e011aa0 (patch) | |
tree | db68f2c2649d3eb84822b9ef34442f711cac7a6f /source4/include | |
parent | 43caaa54e7ed0e72faed9e210a9f0e672e4e7d86 (diff) | |
download | samba-a8a42e7f53c67b09954ea2232830c07c6e011aa0.tar.gz samba-a8a42e7f53c67b09954ea2232830c07c6e011aa0.tar.bz2 samba-a8a42e7f53c67b09954ea2232830c07c6e011aa0.zip |
r100: remember the user session key during session setup so it can be used in various crypto
routines
(This used to be commit f6cf9020c8899e784385ea0e14fa465685441ee6)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/cli_context.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/include/cli_context.h b/source4/include/cli_context.h index bffb6c9f6a..0e817c3cb0 100644 --- a/source4/include/cli_context.h +++ b/source4/include/cli_context.h @@ -66,6 +66,10 @@ struct cli_negotiate { unsigned int writebraw_supported:1; const char *server_domain; + + /* remember the session key for data encryption in various sub-protocols + such as LSA */ + uint8 user_session_key[16]; }; /* this is the context for a SMB socket associated with the socket itself */ |