summaryrefslogtreecommitdiff
path: root/source3/include/client.h
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2002-05-31 22:18:07 +0000
committerJeremy Allison <jra@samba.org>2002-05-31 22:18:07 +0000
commitb5053d0a5f47e42022962246c89d08369c496232 (patch)
tree6ccb680a066ce2b3550ca92d241410e8b1fbfc6b /source3/include/client.h
parent4e71eae06eb4a2d67edd3767dc888c5c5de3cfc9 (diff)
downloadsamba-b5053d0a5f47e42022962246c89d08369c496232.tar.gz
samba-b5053d0a5f47e42022962246c89d08369c496232.tar.bz2
samba-b5053d0a5f47e42022962246c89d08369c496232.zip
Removed some unused variables - tidy up some formating, add struct to
client state to implement smb signing - this is a test at present. Jeremy. (This used to be commit a234e303558a25c4ea26b7f6788006e4fee651bf)
Diffstat (limited to 'source3/include/client.h')
-rw-r--r--source3/include/client.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/include/client.h b/source3/include/client.h
index 0974cd0666..15fc168cbb 100644
--- a/source3/include/client.h
+++ b/source3/include/client.h
@@ -57,6 +57,13 @@ struct print_job_info
time_t t;
};
+typedef struct smb_sign_info {
+ BOOL use_smb_signing;
+ size_t mac_key_len;
+ uint8 mac_key[44];
+ uint32 seq_num;
+} smb_sign_info;
+
struct cli_state {
int port;
int fd;
@@ -109,6 +116,8 @@ struct cli_state {
TALLOC_CTX *mem_ctx;
+ smb_sign_info sign_info;
+
/*
* Only used in NT domain calls.
*/