diff options
author | Jeremy Allison <jra@samba.org> | 2002-05-31 22:18:07 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-05-31 22:18:07 +0000 |
commit | a234e303558a25c4ea26b7f6788006e4fee651bf (patch) | |
tree | d658b915b65a04530d1c66b060c40cd68f9fd570 /source/include/client.h | |
parent | ebd07c3a295e3f8cd46441caac4dc8e8b178c2cc (diff) | |
download | samba-a234e303558a25c4ea26b7f6788006e4fee651bf.tar.gz samba-a234e303558a25c4ea26b7f6788006e4fee651bf.tar.xz samba-a234e303558a25c4ea26b7f6788006e4fee651bf.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.
Diffstat (limited to 'source/include/client.h')
-rw-r--r-- | source/include/client.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source/include/client.h b/source/include/client.h index 0974cd06664..15fc168cbba 100644 --- a/source/include/client.h +++ b/source/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. */ |