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 | b5053d0a5f47e42022962246c89d08369c496232 (patch) | |
tree | 6ccb680a066ce2b3550ca92d241410e8b1fbfc6b /source3/include | |
parent | 4e71eae06eb4a2d67edd3767dc888c5c5de3cfc9 (diff) | |
download | samba-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')
-rw-r--r-- | source3/include/client.h | 9 | ||||
-rw-r--r-- | source3/include/smb.h | 8 |
2 files changed, 16 insertions, 1 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. */ diff --git a/source3/include/smb.h b/source3/include/smb.h index e34032bfbf..8d66fa71d1 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -1281,6 +1281,12 @@ char *strdup(char *s); #define BROWSER_ELECTION_VERSION 0x010f #define BROWSER_CONSTANT 0xaa55 +/* Sercurity mode bits. */ +#define NEGOTIATE_SECURITY_USER_LEVEL 0x01 +#define NEGOTIATE_SECURITY_CHALLENGE_RESPONSE 0x02 +#define NEGOTIATE_SECURITY_SIGNATURES_ENABLED 0x04 +#define NEGOTIATE_SECURITY_SIGNATURES_REQUIRED 0x08 + /* NT Flags2 bits - cifs6.txt section 3.1.2 */ #define FLAGS2_LONG_PATH_COMPONENTS 0x0001 @@ -1310,7 +1316,7 @@ char *strdup(char *s); #define CAP_W2K_SMBS 0x2000 #define CAP_LARGE_READX 0x4000 #define CAP_LARGE_WRITEX 0x8000 -#define CAP_UNIX 0x800000 /* Capabilities for UNIX extensions. Created by HP. */ +#define CAP_UNIX 0x800000 /* Capabilities for UNIX extensions. Created by HP. */ #define CAP_EXTENDED_SECURITY 0x80000000 /* protocol types. It assumes that higher protocols include lower protocols |