From aca5e33b006d62d9a7fbf42584f93f94bda9dac4 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 13 Sep 2011 21:34:35 +0200 Subject: s3:libsmb: split cli->secblob into cli->conn.smb1.server.{guid,gss_blob,challenge,workgroup} metze --- source3/include/client.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source3/include/client.h') 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; -- cgit