summaryrefslogtreecommitdiff
path: root/source3/include/client.h
diff options
context:
space:
mode:
Diffstat (limited to 'source3/include/client.h')
-rw-r--r--source3/include/client.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/source3/include/client.h b/source3/include/client.h
index 0974cd0666..711ae1fd19 100644
--- a/source3/include/client.h
+++ b/source3/include/client.h
@@ -57,6 +57,15 @@ struct print_job_info
time_t t;
};
+typedef struct smb_sign_info {
+ BOOL use_smb_signing;
+ BOOL negotiated_smb_signing;
+ size_t mac_key_len;
+ uint8 mac_key[44];
+ uint32 send_seq_num;
+ uint32 reply_seq_num;
+} smb_sign_info;
+
struct cli_state {
int port;
int fd;
@@ -69,7 +78,6 @@ struct cli_state {
int rap_error;
int privileges;
- fstring eff_name;
fstring desthost;
fstring user_name;
fstring domain;
@@ -109,6 +117,8 @@ struct cli_state {
TALLOC_CTX *mem_ctx;
+ smb_sign_info sign_info;
+
/*
* Only used in NT domain calls.
*/
@@ -145,4 +155,8 @@ struct cli_state {
fstring pipe_name;
};
+#define CLI_FULL_CONNECTION_DONT_SPNEGO 0x0001
+#define CLI_FULL_CONNECTION_USE_KERBEROS 0x0002
+#define CLI_FULL_CONNECTION_ANNONYMOUS_FALLBACK 0x0004
+
#endif /* _CLIENT_H */