diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-09-13 21:34:35 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-09-15 12:12:28 +0200 |
commit | aca5e33b006d62d9a7fbf42584f93f94bda9dac4 (patch) | |
tree | d8b2b777b1de8d4afe1b088e1181284236fc2da1 /source3/include | |
parent | 935eb488774bfb76e05b87d94c8ccd4c07f6608f (diff) | |
download | samba-aca5e33b006d62d9a7fbf42584f93f94bda9dac4.tar.gz samba-aca5e33b006d62d9a7fbf42584f93f94bda9dac4.tar.bz2 samba-aca5e33b006d62d9a7fbf42584f93f94bda9dac4.zip |
s3:libsmb: split cli->secblob into cli->conn.smb1.server.{guid,gss_blob,challenge,workgroup}
metze
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index 4179ae0f52..cdf8069dfb 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -62,7 +62,6 @@ struct cli_state { char *share; char *dev; - DATA_BLOB secblob; /* cryptkey or negTokenInit */ int serverzone; uint32 servertime; int timeout; /* in milliseconds. */ @@ -137,6 +136,10 @@ struct cli_state { bool lockread; bool writeunlock; uint32_t session_key; + struct GUID guid; + DATA_BLOB gss_blob; + uint8_t challenge[8]; + const char *workgroup; } server; uint32_t capabilities; |